forked from adobe/jsonschema2md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "@adobe/jsonschema2md",
"description": "Validate and document complex JSON Schemas the easy way.",
"version": "1.0.3",
"main": "lib/main.js",
"bin": {
"jsonschema2md": "./cli.js"
},
"scripts": {
"lint": "eslint .",
"start": "node cli.js",
"test": "npm run lint && jasmine",
"cover": "istanbul cover --root lib --print detail jasmine"
},
"dependencies": {
"ajv": "^5.0.1-beta",
"async": "^2.0.1",
"bluebird": "^3.5.1",
"ejs": "^2.4.2",
"json-pointer": "^0.6.0",
"lodash": "^4.5.0",
"mkdirp": "^0.5.1",
"optimist": "^0.6.1",
"readdirp": "^2.1.0",
"valid-url": "1.0.9",
"winston": "^2.2.0"
},
"devDependencies": {
"eslint": "^4.10.0",
"istanbul": "^0.4.5",
"jasmine": "~2.8.0",
"npm-snapshot": "^1.0.3"
},
"engines": {
"node": ">= 6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/adobe/jsonschema2md.git"
},
"bugs": {
"url": "https://github.com/adobe/jsonschema2md/issues"
},
"license": "Apache-2.0",
"author": ""
}