-
-
Notifications
You must be signed in to change notification settings - Fork 84
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.09 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.09 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
{
"private": true,
"type": "module",
"engines": {
"node": ">=20.0"
},
"dependencies": {
"ajv": "^8.12.0",
"ajv-formats": "^3.0.1",
"ajv-formats-draft2019": "^1.6.1",
"glob": "^11.0.0",
"npm-run-all": "^4.1.5"
},
"devDependencies": {
"@types/node": ">=18.3"
},
"scripts": {
"test": "run-s test:\\*",
"test:json-schema-lint": "node -- json-schema-lint-tests.js",
"test:json-schema-functional": "run-s test:json-schema-functional:\\*",
"test:json-schema-functional:2.0": "node -- json-schema-functional-tests.js -v 2.0",
"test:json-schema-functional:1.7": "node -- json-schema-functional-tests.js -v 1.7",
"test:json-schema-functional:1.6": "node -- json-schema-functional-tests.js -v 1.6",
"test:json-schema-functional:1.5": "node -- json-schema-functional-tests.js -v 1.5",
"test:json-schema-functional:1.4": "node -- json-schema-functional-tests.js -v 1.4",
"test:json-schema-functional:1.3": "node -- json-schema-functional-tests.js -v 1.3",
"test:json-schema-functional:1.2": "node -- json-schema-functional-tests.js -v 1.2"
}
}