-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.96 KB
/
package.json
File metadata and controls
111 lines (111 loc) · 3.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "json-schema-library",
"version": "11.0.5",
"description": "Customizable and hackable json-validator and json-schema utilities for traversal, data generation and validation",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.cts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"scripts": {
"coverage": "nyc npm run test --reporter=lcov",
"dist": "tsdown -f esm -f cjs --minify; yarn dist:iife",
"dist:iife": "tsdown --config tsdown.iife.config.ts --no-clean --minify; mv dist/index.iife.js dist/jlib.js",
"lint": "yarn lint:src && yarn lint:types",
"lint:src": "eslint src",
"lint:types": "tsc --noEmit",
"lint:tests": "tsc --noEmit --project tsconfig.test.json",
"prepublishOnly": "yarn dist",
"tdd": "watch \"npm run test:unit\" src/",
"test": "mocha 'src/**/*.{test,spec}.ts'",
"test:2019": "mocha 'src/tests/spec/draft2019-09.spec.ts'",
"test:2019:ci": "DISABLE_LOG=true mocha -R json 'src/tests/spec/draft2019-09.spec.ts' > test-result-spec2019-09.json; exit 0",
"test:2020": "mocha 'src/tests/spec/draft2020-12.spec.ts'",
"test:2020:ci": "DISABLE_LOG=true mocha -R json 'src/tests/spec/draft2020-12.spec.ts' > test-result-spec2020-12.json; exit 0",
"test:4": "mocha 'src/tests/spec/draft04.spec.ts'",
"test:4:ci": "DISABLE_LOG=true mocha -R json 'src/tests/spec/draft04.spec.ts' > test-result-spec4.json; exit 0",
"test:6": "mocha 'src/tests/spec/draft06.spec.ts'",
"test:6:ci": "DISABLE_LOG=true mocha -R json 'src/tests/spec/draft06.spec.ts' > test-result-spec6.json; exit 0",
"test:7": "mocha 'src/tests/spec/draft07.spec.ts'",
"test:7:ci": "DISABLE_LOG=true mocha -R json 'src/tests/spec/draft07.spec.ts' > test-result-spec7.json; exit 0",
"test:inspect": "NODE_OPTIONS='--inspect-brk' mocha 'src/**/*.test.ts'",
"test:spec": "mocha 'src/tests/spec/*.spec.ts'",
"test:unit": "mocha 'src/**/*.test.ts'",
"test:unit:ci": "DISABLE_LOG=true mocha -R json 'src/**/*.test.ts' -R json > test-result-unit.json; exit 0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sagold/json-schema-library.git"
},
"keywords": [
"JSON",
"schema",
"customize",
"library",
"tools",
"utilities",
"validator",
"validation",
"jsonschema",
"json-schema",
"json-schema-validator",
"json-schema-validation",
"make my day"
],
"author": "Sascha Goldhofer <github@saschagoldhofer.de> (https://github.com/sagold/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/sagold/json-schema-library/issues"
},
"homepage": "https://github.com/sagold/json-schema-library",
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/glob": "^ 8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^25.3.3",
"@types/valid-url": "^1.0.7",
"eslint": "^9.39.2",
"glob": "^13.0.6",
"json-schema-test-suite": "https://github.com/json-schema-org/JSON-Schema-Test-Suite#Test-JSON-Schema-Acceptance-1.029",
"mocha": "^11.7.5",
"nyc": "^17.1.0",
"tsdown": "^0.21.2",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0",
"watch": "^1.0.1"
},
"dependencies": {
"@sagold/json-pointer": "^7.2.1",
"@sagold/json-query": "^6.2.0",
"deepmerge": "^4.3.1",
"fast-copy": "^4.0.2",
"fast-deep-equal": "^3.1.3",
"lodash": "^4.17.23",
"smtp-address-parser": "^1.1.0",
"uri-js": "^4.4.1",
"valid-url": "^1.0.9"
},
"resolutions": {
"ajv": ">=6.14.0",
"braces": ">=3.0.3",
"cross-spawn": ">=7.0.6",
"diff": ">=8.0.3",
"json5": ">=2.2.3",
"js-yaml": ">=4.1.1",
"lodash": ">=4",
"merge": ">=2",
"micromatch": ">=4.0.8",
"serialize-javascript": ">=7.0.3",
"string-width": ">=4.2.3",
"minimatch": ">=9.0.7"
},
"publishConfig": {
"registry": "https://registry.npmjs.org"
}
}