forked from ajv-validator/ajv-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.09 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
{
"name": "ajv-cli",
"version": "3.0.0",
"description": "A command line interface for epoberezkin/ajv JSON schema validator",
"scripts": {
"eslint": "eslint index.js commands/*.js test/*.js test/**/*.js",
"test-spec": "mocha test/*.spec.js -R spec",
"test-cov": "nyc npm run test-spec",
"test": "npm run eslint && npm run test-cov"
},
"nyc": {
"exclude": [
"test",
"node_modules"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": true
},
"bin": {
"ajv": "index.js"
},
"preferGlobal": true,
"author": "Jesse Collis <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jessedc/ajv-cli"
},
"dependencies": {
"ajv": "^6.0.0",
"ajv-pack": "^0.3.0",
"fast-json-patch": "^0.5.6",
"glob": "^7.0.3",
"json-schema-migrate": "^0.2.0",
"minimist": "^1.2.0"
},
"devDependencies": {
"ajv-keywords": "^3.0.0",
"coveralls": "^2.11.8",
"eslint": "^2.4.0",
"mocha": "^2.4.5",
"nyc": "^8.3.0",
"pre-commit": "^1.1.2"
}
}