-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 925 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
36
37
38
39
40
41
{
"name": "schema2md",
"version": "0.2.1",
"description": "A lightweight markdown generator from JSON Schema.",
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "jest",
"cov": "jest --coverage",
"lint": "xo --fix lib",
"prepublishOnly": "conventional-changelog -p angular -r 2 -i CHANGELOG.md -s"
},
"repository": {
"url": "https://github.com/rich-lab/json-schema-2-markdown",
"type": "git"
},
"author": "ulivz <[email protected]>",
"license": "MIT",
"dependencies": {
"fs-extra": "^8.1.0",
"lodash.merge": "^4.6.2"
},
"devDependencies": {
"conventional-changelog-cli": "^2.0.31",
"jest-cli": "^25.1.0",
"xo": "0.23.0"
},
"xo": {
"space": true,
"semicolon": false,
"prettier": true,
"rules": {
"no-await-in-loop": "off"
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}