-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
110 lines (110 loc) · 3.45 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "jsond-validator",
"version": "2.1.4",
"description": "JSOND Validator",
"author": {
"name": "Valentin Agachi",
"url": "http://agachi.name/"
},
"homepage": "https://github.com/avaly/jsond-validator",
"repository": {
"type": "git",
"url": "git://github.com/avaly/jsond-validator.git"
},
"bugs": {
"url": "https://github.com/avaly/jsond-validator/issues"
},
"keywords": [
"json",
"jsond",
"validator",
"schema",
"jsonschema"
],
"license": "ISC",
"main": "lib/index.js",
"files": [
"bin/validate-jsond",
"dist/jsond-validator.js",
"dist/jsond-validator.min.js",
"lib/"
],
"bin": {
"validate-jsond": "./bin/validate-jsond"
},
"scripts": {
"benchmark": "node benchmark/run.js",
"build:dist": "rollup -c rollup.config.js && rollup -c rollup.config.min.js",
"build:test": "rollup -c test/client/rollup.config.js",
"commitmsg": "validate-commit-msg",
"coverage": "npm run test-coverage && codecov",
"eslint-check": "eslint --print-config .eslintrc.js | eslint-config-prettier-check",
"lint": "eslint .",
"precommit": "lint-staged",
"prepush": "npm run lint && npm test -- --reporter dot",
"pretty": "npm run pretty:benchmark && npm run pretty:bin && npm run pretty:lib && npm run pretty:test",
"pretty:benchmark": "prettier --use-tabs --single-quote --trailing-comma es5 --write \"benchmark/**/*.js\"",
"pretty:bin": "prettier --use-tabs --single-quote --trailing-comma es5 --write \"bin/*\"",
"pretty:lib": "prettier --use-tabs --single-quote --trailing-comma es5 --write \"lib/*.js*\"",
"pretty:test": "prettier --use-tabs --single-quote --trailing-comma es5 --write \"test/*/*.js\"",
"release": "npm run build:dist && git add dist && standard-version -a",
"test": "mocha test/*.js",
"test-client": "npm run build:test && grunt mocha",
"test-coverage": "istanbul cover node_modules/mocha/bin/_mocha",
"test-flow": "./test/flow/setup.sh && mocha test/flow/*.test.js",
"test-saucelabs": "npm run build:test && grunt saucelabs"
},
"dependencies": {},
"devDependencies": {
"ajv": "^5.3.0",
"babel-eslint": "^8.0.1",
"benchmark": "^2.1.3",
"chalk": "^2.3.0",
"codecov": "^3.0.0",
"debug": "^3.1.0",
"diff": "^3.4.0",
"eslint": "^4.10.0",
"eslint-config-prettier": "^2.7.0",
"eslint-plugin-flowtype": "^2.39.1",
"flow-bin": "^0.58.0",
"grunt": "^1.0.1",
"grunt-cli": "^1.2.0",
"grunt-contrib-connect": "^1.0.2",
"grunt-contrib-watch": "^1.0.0",
"grunt-jsonlint": "^1.1.0",
"grunt-mocha": "^1.0.4",
"grunt-saucelabs": "^9.0.0",
"husky": "^0.14.3",
"is-my-json-valid": "^2.16.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"jsond-validator": "1.3.0",
"lint-staged": "^4.3.0",
"minami": "^1.2.3",
"mocha": "^4.0.1",
"prettier": "^1.7.4",
"rollup": "^0.50.0",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-filesize": "^1.4.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.1.0",
"rollup-plugin-re": "^1.0.6",
"rollup-plugin-uglify": "^2.0.1",
"standard-version": "^4.2.0",
"validate-commit-msg": "^2.14.0"
},
"lint-staged": {
"{benchmark,lib,test}/**/*.js": [
"prettier --use-tabs --single-quote --trailing-comma es5 --write",
"git add"
]
},
"greenkeeper": {
"ignore": [
"ajv",
"djv",
"jsond-validator",
"webpack"
]
}
}