-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
65 lines (65 loc) · 2.16 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "vets-json-schema",
"version": "24.5.5",
"license": "CC0-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/department-of-veterans-affairs/vets-json-schema.git"
},
"scripts": {
"build": "node src/start build",
"postinstall": "node ./script/check-node-version.js",
"test": "mocha 'test/**/*.spec.js'",
"test:all-schemas": "mocha 'test/common/all-schemas.spec.js'",
"watch": "node src/start watch",
"lint": "eslint src -c .eslintrc --ext js",
"lint:fix": "eslint src -c .eslintrc --fix --ext js",
"lint:changed": "LIST=`git diff-index --name-only HEAD | grep \"\\.js[x]\\{0,1\\}$\"`; if [ \"$LIST\" ]; then eslint --fix --quiet $LIST; fi",
"local-link": "yarn local-link:vets-api; yarn local-link:vets-website",
"local-link:vets-api": "./script/local-link.sh link vets-api",
"local-link:vets-website": "./script/local-link.sh link vets-website",
"local-unlink": "yarn local-unlink:vets-api; yarn local-unlink:vets-website",
"local-unlink:vets-api": "./script/local-link.sh unlink vets-api",
"local-unlink:vets-website": "./script/local-link.sh unlink vets-website"
},
"main": "dist/schemas.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.18.10",
"@babel/preset-env": "^7.18.10",
"@babel/register": "^7.18.9",
"ajv": "^4.5.0",
"chai": "^3.5.0",
"chalk": "^4.1.2",
"danger": "^10.9.0",
"eslint": "^6.8.0",
"eslint-config-airbnb": "^18.2.0",
"eslint-config-prettier": "^6.12.0",
"eslint-plugin-chai-expect": "^2.2.0",
"eslint-plugin-fp": "^2.3.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-mocha": "^6.3.0",
"eslint-plugin-prettier": "^3.4.1",
"jsonfile": "^2.3.1",
"lodash": "^4.17.21",
"mocha": "^3.0.2",
"node-watch": "^0.4.0",
"prettier": "^1.19.1",
"semver": "^7.5.2"
},
"engines": {
"node": ">=14.15.0"
},
"homepage": "https://github.com/department-of-veterans-affairs/vets-json-schema#readme",
"resolutions": {
"**/debug": "^3.1.0",
"**/diff": "^3.5.0",
"**/growl": "1.10.2",
"**/minimist": "^1.2.3"
},
"dependencies": {
"minimist": "^1.2.3"
}
}