forked from ajv-validator/ajv-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 950 Bytes
/
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
{
"name": "ajv-cli",
"version": "1.0.0",
"description": "A command line interface for epoberezkin/ajv JSON schema validator",
"scripts": {
"eslint": "eslint index.js commands/*.js",
"test-spec": "mocha test/*.spec.js -R spec",
"test-cov": "rm -rf coverage && CLI_TEST_COVERAGE=true npm run test-spec && istanbul report lcov text-summary",
"test": "npm run eslint && npm run test-cov"
},
"bin": {
"ajv": "index.js"
},
"preferGlobal": true,
"author": "Jesse Collis <jesse@jcmultimedia.com.au>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/jessedc/ajv-cli"
},
"dependencies": {
"ajv": "^4.7.4",
"ajv-pack": "^0.2.1",
"fast-json-patch": "^0.5.6",
"glob": "^7.0.3",
"minimist": "^1.2.0"
},
"devDependencies": {
"coveralls": "^2.11.8",
"eslint": "^2.4.0",
"istanbul": "^0.4.2",
"mocha": "^2.4.5",
"pre-commit": "^1.1.2"
}
}