@fgv/ts-json-base 2.0.1 → 2.1.1-alpha.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.json ADDED
@@ -0,0 +1,17 @@
1
+ {
2
+ "name": "@fgv/ts-json-base",
3
+ "entries": [
4
+ {
5
+ "version": "2.2.0",
6
+ "tag": "@fgv/ts-json-base_v2.2.0",
7
+ "date": "Thu, 18 Jan 2024 05:45:04 GMT",
8
+ "comments": {
9
+ "none": [
10
+ {
11
+ "comment": "initial refactor"
12
+ }
13
+ ]
14
+ }
15
+ }
16
+ ]
17
+ }
package/CHANGELOG.md ADDED
@@ -0,0 +1,11 @@
1
+ # Change Log - @fgv/ts-json-base
2
+
3
+ This log was last generated on Thu, 18 Jan 2024 05:45:04 GMT and should not be manually modified.
4
+
5
+ ## 2.2.0
6
+ Thu, 18 Jan 2024 05:45:04 GMT
7
+
8
+ ### Updates
9
+
10
+ - initial refactor
11
+
package/lib/index.js.map CHANGED
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,+DAAiD;AAGxC,4BAAQ;AADjB,kDAAgC","sourcesContent":["/*\n * Copyright (c) 2023 Erik Fortune\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\nimport * as JsonFile from './packlets/json-file';\n\nexport * from './packlets/json';\nexport { JsonFile };\n\n"]}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";AAAA;;;;;;;;;;;;;;;;;;;;GAoBG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAEH,+DAAiD;AAGxC,4BAAQ;AADjB,kDAAgC","sourcesContent":["/*\n * Copyright (c) 2023 Erik Fortune\n *\n * Permission is hereby granted, free of charge, to any person obtaining a copy\n * of this software and associated documentation files (the \"Software\"), to deal\n * in the Software without restriction, including without limitation the rights\n * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell\n * copies of the Software, and to permit persons to whom the Software is\n * furnished to do so, subject to the following conditions:\n *\n * The above copyright notice and this permission notice shall be included in all\n * copies or substantial portions of the Software.\n *\n * THE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\n * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\n * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\n * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\n * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\n * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\n * SOFTWARE.\n */\n\nimport * as JsonFile from './packlets/json-file';\n\nexport * from './packlets/json';\nexport { JsonFile };\n"]}
package/package.json CHANGED
@@ -1,61 +1,61 @@
1
1
  {
2
- "name": "@fgv/ts-json-base",
3
- "version": "2.0.1",
4
- "description": "Typescript types and basic functions for working with json",
5
- "main": "lib/index.js",
6
- "types": "dist/ts-json-base.d.ts",
7
- "scripts": {
8
- "build": "heft test --clean",
9
- "clean": "heft clean",
10
- "test": "heft test",
11
- "build-docs": "api-documenter markdown --input-folder ./temp --output-folder docs",
12
- "build-all": "rushx build; rushx build-docs",
13
- "test-handles": "jest --runInBand --detectOpenHandles",
14
- "clean-jest": "jest --clear-cache",
15
- "coverage": "jest --coverage --no-cache",
16
- "lint": "eslint src --ext .ts",
17
- "fixlint": "eslint src --ext .ts --fix"
18
- },
19
- "keywords": [
20
- "typescript",
21
- "json"
22
- ],
23
- "author": "Erik Fortune",
24
- "license": "MIT",
25
- "bugs": {
26
- "url": "https://github.com/ErikFortune/fgv/issues"
27
- },
28
- "homepage": "https://github.com/ErikFortune/fgv/tree/main/libraries/ts-json-base#readme",
29
- "sideEffects": false,
30
- "devDependencies": {
31
- "@fgv/ts-utils": "workspace:*",
32
- "@fgv/ts-utils-jest": "workspace:*",
33
- "@types/jest": "^29.5.11",
34
- "@types/mustache": "^4.2.5",
35
- "@types/node": "^20.11.5",
36
- "@typescript-eslint/eslint-plugin": "^6.19.0",
37
- "@typescript-eslint/parser": "^6.19.0",
38
- "eslint": "^8.56.0",
39
- "eslint-config-standard": "^17.1.0",
40
- "eslint-plugin-import": "^2.29.1",
41
- "eslint-plugin-node": "^11.1.0",
42
- "eslint-plugin-promise": "^6.1.1",
43
- "jest": "^29.7.0",
44
- "jest-extended": "^4.0.2",
45
- "mustache": "^4.2.0",
46
- "rimraf": "^5.0.5",
47
- "ts-jest": "^29.1.1",
48
- "ts-node": "^10.9.2",
49
- "typescript": "^5.3.3",
50
- "eslint-plugin-n": "^16.6.2",
51
- "@rushstack/heft-node-rig": "~2.4.0",
52
- "@rushstack/heft": "~0.64.0",
53
- "heft-jest": "~1.0.2",
54
- "@types/heft-jest": "1.0.6",
55
- "@microsoft/api-documenter": "^7.23.17"
56
- },
57
- "peerDependencies": {
58
- "@fgv/ts-utils": "^2.0.0",
59
- "mustache": "^4.2.0"
60
- }
2
+ "name": "@fgv/ts-json-base",
3
+ "version": "2.1.1-alpha.1",
4
+ "description": "Typescript types and basic functions for working with json",
5
+ "main": "lib/index.js",
6
+ "types": "dist/ts-json-base.d.ts",
7
+ "keywords": [
8
+ "typescript",
9
+ "json"
10
+ ],
11
+ "author": "Erik Fortune",
12
+ "license": "MIT",
13
+ "bugs": {
14
+ "url": "https://github.com/ErikFortune/fgv/issues"
15
+ },
16
+ "homepage": "https://github.com/ErikFortune/fgv/tree/main/libraries/ts-json-base#readme",
17
+ "sideEffects": false,
18
+ "devDependencies": {
19
+ "@fgv/ts-utils": "2.1.1-alpha.1",
20
+ "@fgv/ts-utils-jest": "2.1.1-alpha.1",
21
+ "@types/jest": "^29.5.11",
22
+ "@types/mustache": "^4.2.5",
23
+ "@types/node": "^20.11.5",
24
+ "@typescript-eslint/eslint-plugin": "^6.19.0",
25
+ "@typescript-eslint/parser": "^6.19.0",
26
+ "eslint": "^8.56.0",
27
+ "eslint-config-standard": "^17.1.0",
28
+ "eslint-plugin-import": "^2.29.1",
29
+ "eslint-plugin-node": "^11.1.0",
30
+ "eslint-plugin-promise": "^6.1.1",
31
+ "jest": "^29.7.0",
32
+ "jest-extended": "^4.0.2",
33
+ "mustache": "^4.2.0",
34
+ "rimraf": "^5.0.5",
35
+ "ts-jest": "^29.1.1",
36
+ "ts-node": "^10.9.2",
37
+ "typescript": "^5.3.3",
38
+ "eslint-plugin-n": "^16.6.2",
39
+ "@rushstack/heft-node-rig": "~2.4.0",
40
+ "@rushstack/heft": "~0.64.0",
41
+ "heft-jest": "~1.0.2",
42
+ "@types/heft-jest": "1.0.6",
43
+ "@microsoft/api-documenter": "^7.23.17"
44
+ },
45
+ "peerDependencies": {
46
+ "@fgv/ts-utils": "^2.1.1-alpha.1",
47
+ "mustache": "^4.2.0"
48
+ },
49
+ "scripts": {
50
+ "build": "heft test --clean",
51
+ "clean": "heft clean",
52
+ "test": "heft test",
53
+ "build-docs": "api-documenter markdown --input-folder ./temp --output-folder docs",
54
+ "build-all": "rushx build; rushx build-docs",
55
+ "test-handles": "jest --runInBand --detectOpenHandles",
56
+ "clean-jest": "jest --clear-cache",
57
+ "coverage": "jest --coverage --no-cache",
58
+ "lint": "eslint src --ext .ts",
59
+ "fixlint": "eslint src --ext .ts --fix"
60
+ }
61
61
  }