-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 1007 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 1007 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "jmix-spec",
"private": true,
"version": "0.0.0",
"description": "JMIX specification validation tooling",
"license": "UNLICENSED",
"devDependencies": {
"ajv": "^8.17.1",
"ajv-cli": "^5.0.0",
"ajv-formats": "^3.0.1",
"docsify-cli": "^4.4.4"
},
"scripts": {
"docs:serve": "docsify serve docs -p 3000",
"validate:manifest": "ajv -s schemas/manifest.schema.json -d examples/manifest.json --spec=draft2020 -c ajv-formats --strict=false",
"validate:metadata": "ajv -s schemas/metadata.schema.json -d examples/metadata.json --spec=draft2020 -c ajv-formats --strict=false",
"validate:files": "ajv -s schemas/files.schema.json -d examples/files.json --spec=draft2020 -c ajv-formats --strict=false",
"validate:audit": "ajv -s schemas/audit.schema.json -d examples/audit.json --spec=draft2020 -c ajv-formats --strict=false",
"validate": "npm run validate:manifest && npm run validate:metadata && npm run validate:files && npm run validate:audit"
}
}