-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
executable file
·50 lines (50 loc) · 1.24 KB
/
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
42
43
44
45
46
47
48
49
50
{
"name": "@_nu/vue-button",
"version": "0.0.3",
"description": "NU 「 no-ui 」 组件库系统 nu-system,按钮组件 VUE 实现",
"main": "lib/index.common.js",
"author": "yfe-team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nu-system/vue-button.git"
},
"bugs": {
"url": "https://github.com/nu-system/vue-button/issues"
},
"files": [
"lib",
"CHANGELOG.md",
"README.md",
"LICENSE",
"package.json"
],
"devDependencies": {
"@vue/cli-service-global": "^3.9.3",
"conventional-changelog-cli": "^2.0.21",
"cz-conventional-changelog": "3.0.2"
},
"peerDependencies": {
"commitizen": "^4.0.3"
},
"scripts": {
"build": "vue-cli-service build --target lib --name index --dest lib src/index.js",
"prepublishOnly": "npm run build",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"commitInit": "commitizen init cz-conventional-changelog --yarn --dev --exact"
},
"homepage": "https://nu-system.github.io/vue/button/",
"keywords": [
"ui",
"no-ui",
"nu-system",
"vue",
"vue-ui",
"button"
],
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}