-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.07 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.07 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
{
"name": "plugboard",
"version": "0.1.0",
"description": "以插件为中心按需配置解决复杂业务",
"scripts": {
"test:unit": "mocha",
"cover": "npm run cover:unit && npm run cover:report",
"cover:unit": "nyc --silent npm run test:unit",
"cover:report": "nyc report --reporter=lcov --reporter=text",
"docs:dev": "vuepress dev packages/docs/docs",
"docs:build": "vuepress build packages/docs/docs"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"espower-loader": "^1.2.2",
"husky": "^4.0.0",
"intelli-espower-loader": "^1.0.1",
"lerna": "^3.20.2",
"mocha": "^7.2.0",
"nyc": "^15.0.0",
"power-assert": "^1.6.1",
"pre-commit": "^1.2.2",
"prettier": "^1.19.1",
"prettier-eslint": "^9.0.1",
"sinon": "^9.0.2",
"vuepress": "^1.5.2"
},
"keywords": [
"plugin"
],
"author": "",
"license": "MIT",
"dependencies": {
"@plugboard/core": "file:packages/core",
"@plugboard/docs": "file:packages/docs"
}
}