-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
35 lines (35 loc) · 856 Bytes
/
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
{
"name": "json-schema-to-markdown",
"version": "1.1.1",
"description": "Turn a JSON Schema into a markdown file.",
"main": "index.js",
"scripts": {
"commit": "git-cz",
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "https://github.com/saibotsivad/json-schema-to-markdown.git"
},
"keywords": [
"json-schema",
"markdown"
],
"author": "saibotsivad",
"license": "VOL",
"bugs": {
"url": "https://github.com/saibotsivad/json-schema-to-markdown/issues"
},
"homepage": "https://github.com/saibotsivad/json-schema-to-markdown",
"devDependencies": {
"commitizen": "^3.1.1",
"cz-conventional-changelog": "^2.1.0",
"is-my-json-valid": "^2.19.0",
"tape": "^4.10.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}