-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 969 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 969 Bytes
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
{
"name": "umijs-plugin-bugu-ui",
"version": "0.2.8",
"description": "@umijs plugin for bugu-ui-components",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "https://github.com/bugu-pro/umijs-plugin-bugu-ui"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"postversion": "git push --follow-tags",
"build": "father-build",
"version": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"prepublishOnly": "npm run build"
},
"keywords": [
"bugu-ui"
],
"author": "viccsen <lianghuang.vic@gmail.com>",
"license": "MIT",
"peerDependencies": {
"umi": "3.x"
},
"dependencies": {
"antd": "^4.1.3"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"devDependencies": {
"father-build": "^1.21.2",
"husky": "4.3.8"
}
}