-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
41 lines (41 loc) · 1.32 KB
/
package.json
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
{
"name": "xarf-bundler",
"version": "1.0.0",
"description": "Created bundled and fully derefed versions of xarf schema",
"repository": "https://github.com/abusix/xarf.git",
"author": "Frederik Petersen <[email protected]>",
"license": "MIT",
"scripts": {
"bundle-xarf": "node bundle_xarf.js",
"clean-coverage": "rm -rf .nyc_output coverage .generated_code",
"generate-code": "ajv compile -c ajv-formats -s xarf.schema.json -r 'schemas/**/*.schema.json' -o gen_validate_schema.js && js-beautify gen_validate_schema.js > gen_validate_schema_pretty.js",
"test-xarf": "npm run clean-coverage && npm run generate-code && nyc --reporter=lcov mocha test/test_xarf.js",
"prepare": "husky install"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^9.0.1",
"jsonfile": "^6.0.1"
},
"devDependencies": {
"ajv": "^8.12.0",
"ajv-cli": "5.0.0",
"ajv-formats": "^2.1.1",
"eslint": "^7.0.0",
"eslint-plugin-mocha": "^8.0.0",
"husky": "^5.1.2",
"istanbul-lib-instrument": "^4.0.3",
"js-beautify": "^1.13.0",
"lint-staged": ">=10",
"mocha": "^10.1.0",
"nyc": "^15.0.1",
"prettier": "2.2.1",
"uuid": "^8.0.0"
},
"lint-staged": {
"*.js": "eslint",
"*.{js,json,md,yml}": "prettier --check"
},
"overrides": {
"fast-json-patch": "^3.1.1"
}
}