forked from adobe/jsonschema2md
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.41 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
78
79
80
81
{
"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",
"examples": "node cli.js -d examples/schemas/ -o examples/docs/ -x examples/generated-schemas/",
"test": " nyc --reporter=text --reporter=lcov --check-coverage --branches 80 --statements 95 --lines 95 mocha && node lib/locales/update.js",
"test-ci": "nyc --reporter=text --reporter=lcov --check-coverage --branches 80 --statements 95 --lines 95 mocha --reporter xunit --reporter-options output=./junit/test-results.xml; codecov"
},
"dependencies": {
"@adobe/helix-log": "4.5.3",
"es2015-i18n-tag": "1.6.1",
"ferrum": "1.7.0",
"fs-extra": "9.1.0",
"github-slugger": "1.3.0",
"js-yaml": "4.0.0",
"mdast-builder": "1.1.1",
"mdast-util-to-string": "2.0.0",
"readdirp": "3.5.0",
"remark-gfm": "^1.0.0",
"remark-parse": "9.0.0",
"remark-stringify": "9.0.1",
"unified": "9.2.0",
"unist-util-inspect": "6.0.1",
"yargs": "16.2.0"
},
"devDependencies": {
"@semantic-release/changelog": "5.0.1",
"@semantic-release/git": "9.0.0",
"@semantic-release/github": "7.2.0",
"codecov": "3.8.1",
"commitizen": "4.2.3",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.18.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-header": "3.1.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsx-a11y": "6.4.1",
"eslint-plugin-react": "7.22.0",
"ghooks": "2.0.4",
"i18n-tag-schema": "2.5.0",
"json-logic-js": "git://github.com/axa-ch/cyclic-schemas-test.git",
"lint-staged": "10.5.3",
"mocha": "8.2.1",
"nyc": "15.1.0",
"semantic-release": "17.3.7",
"unist-util-select": "3.0.4"
},
"engines": {
"node": ">= 10.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"
}
}
}