forked from adobe/jsonschema2md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
77 lines (77 loc) · 1.95 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
{
"name": "@adobe/jsonschema2md",
"description": "Validate and document complex JSON Schemas the easy way.",
"version": "1.1.1",
"main": "lib/main.js",
"bin": {
"jsonschema2md": "./cli.js"
},
"scripts": {
"semantic-release": "semantic-release",
"commit": "git-cz",
"lint": "eslint .",
"lint-fix": "eslint . --fix",
"start": "node cli.js",
"test": "npm run lint && jasmine",
"cover": "istanbul cover --root lib --print detail jasmine"
},
"dependencies": {
"@adobe/helix-log": "^1.2.0",
"ajv": "^6.10.2",
"bluebird": "^3.5.5",
"ejs": "^2.6.2",
"github-slugger": "^1.2.1",
"i18n": "^0.8.3",
"jasmine-xml-reporter": "^1.2.1",
"json-pointer": "^0.6.0",
"lodash": "^4.17.15",
"mkdirp": "^0.5.1",
"optimist": "^0.6.1",
"prettier": "^1.18.2",
"readdirp": "^3.1.1",
"valid-url": "1.0.9"
},
"devDependencies": {
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.2",
"commitizen": "^4.0.3",
"cz-conventional-changelog": "^3.0.2",
"eslint": "6.2.2",
"eslint-config-airbnb": "17.1.1",
"eslint-plugin-header": "3.0.0",
"eslint-plugin-import": "2.18.0",
"eslint-plugin-jsx-a11y": "6.2.3",
"eslint-plugin-react": "7.14.2",
"ghooks": "^2.0.4",
"istanbul": "^0.4.5",
"jasmine": "~3.4.0",
"jasmine-diff": "^0.1.3",
"lint-staged": "^9.2.1",
"npm-snapshot": "^1.0.3",
"semantic-release": "^15.13.20"
},
"engines": {
"node": ">= 8.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": "",
"lint-staged": {
"*.js": "eslint"
},
"config": {
"commitizen": {
"path": "node_modules/cz-conventional-changelog"
},
"ghooks": {
"pre-commit": "npx lint-staged"
}
}
}