-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.28 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
{
"name": "json-grammar",
"version": "0.3.2",
"description": "Grammar-based description and validation of JSON structures.",
"main": "index.js",
"scripts": {
"patch": "npm run test && release-it patch",
"minor": "npm run test && release-it minor",
"major": "npm run test && release-it major",
"test": "mocha",
"test-all": "(cd test/ && make test)"
},
"hooks": {
"before:init": [
"npm test"
],
"after:bump": "echo bumping",
"after:git:release": "echo After git push, before github release",
"after:release": "echo Successfully released ${name} v${version} to ${repo.repository}."
},
"repository": {
"type": "git",
"url": "git+https://github.com/ericprud/jsg.git"
},
"keywords": [
"JSON",
"schema",
"grammar",
"context-sensitive",
"validation"
],
"author": "Eric Prud'hommeaux <[email protected]> (http://www.w3.org/People/Eric/)",
"license": "MIT",
"bin": "lib/cli.js",
"bugs": {
"url": "https://github.com/ericprud/jsg/issues"
},
"homepage": "https://github.com/ericprud/jsg#readme",
"dependencies": {
"@xmldom/xmldom": "^0.8.2",
"commander": "^2.19.0"
},
"devDependencies": {
"chai": "^4.2.0",
"jison": "^0.4.18",
"mocha": "^10.0.0",
"release-it": "^15.0.0"
}
}