forked from adobe/jsonschema2md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.15 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": "@adobe/jsonschema2md",
"description": "Validate and document complex JSON Schemas the easy way.",
"version": "1.0.5",
"main": "lib/main.js",
"bin": {
"jsonschema2md": "./cli.js"
},
"scripts": {
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"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",
"github-slugger": "^1.2.0",
"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",
"jasmine-diff": "^0.1.3",
"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": ""
}