-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 2.11 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 2.11 KB
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
{
"name": "write-api-doc",
"version": "2.0.0",
"description": "write api doc,it can be a tool for apidoc",
"main": "lib/write-api-doc.common.js",
"module": "lib/write-api-doc.esm.js",
"unpkg": "lib/write-api-doc.js",
"scripts": {
"dev": "nodemon --legacy-watch --config config/nodemon.config.json",
"build": "node build/rollup.pro.config.js",
"lint": "eslint --fix src test",
"test:unit": "rollup --config build/rollup.dev.config.js && mocha --require babel-core/register",
"test:coverage": "nyc npm run test:unit",
"test:coverage2": "nyc --reporter=html --reporter=text mocha --require babel-core/register test/*.js",
"format": "prettier --write \"src/*.js\" \"test/**/*.js\"",
"release": "bash build/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ymc-github/js-lib-write-api-doc.git"
},
"author": "yemiancheng <ymc.github@gmail.com> (https://github.com/YMC-GitHub)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ymc-github/js-lib-write-api-doc/issues"
},
"homepage": "https://github.com/ymc-github/js-lib-write-api-doc#readme",
"devDependencies": {
"@commitlint/cli": "^8.2.0",
"babel-core": "^6.26.3",
"babel-plugin-external-helpers": "^6.22.0",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-register": "^6.26.0",
"chai": "^4.2.0",
"commitlint-config-yemiancheng": "^1.0.0",
"conventional-changelog": "^3.1.10",
"conventional-changelog-yemiancheng": "git+https://github.com/YMC-GitHub/js-lib-changelog-preset.git",
"cross-env": "^5.2.1",
"eslint": "^6.1.0",
"eslint-config-prettier": "^6.0.0",
"eslint-plugin-prettier": "^3.1.2",
"husky": "^3.0.1",
"lint-staged": "^9.2.0",
"mocha": "^6.2.2",
"mochawesome": "^4.1.0",
"nodemon": "^2.0.2",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"rollup": "^1.17.0",
"rollup-plugin-buble": "^0.19.8",
"rollup-plugin-replace": "^2.2.0",
"uglify-js": "^3.7.2"
},
"files": [
"lib"
]
}