-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
39 lines (39 loc) · 1.03 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
{
"name": "json-schema-docs-generator",
"description": "Auto-generate HTML documentation from JSON Schemas",
"version": "2.1.2",
"author": "Tony Stuck <[email protected]>",
"dependencies": {
"bluebird": "^3.0.2",
"chalk": "^1.1.3",
"deep-get-set": "^0.1.1",
"glob": "^5.0.12",
"handlebars": "^4.0.0",
"lodash": "^3.10.0",
"minimist": "^1.2.0",
"mkdirp-then": "^1.1.0"
},
"homepage": "https://github.com/cloudflare/json-schema-docs-generator",
"keywords": [
"json schema",
"schema",
"documentation generator",
"json",
"schema"
],
"license": "MIT",
"main": "index.js",
"repository": "https://github.com/cloudflare/json-schema-docs-generator",
"devDependencies": {
"chai": "^3.0.0",
"istanbul": "^0.3.15",
"mocha": "^2.2.5",
"sinon": "^1.15.4",
"sinon-chai": "^2.8.0"
},
"scripts": {
"test": "mocha \"test/**/*.js\"",
"dev": "npm run test -- --watch",
"coverage": "istanbul cover _mocha -- \"test/**/*.js\" --ui bdd -R spec -t 5000"
}
}