-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.55 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.55 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "vue-cards-demo",
"version": "0.1.5",
"description": "基于Vue的卡片组件",
"main": "lib/vue-cards.common.js",
"style": "lib/theme-chalk/index.h5.css",
"homepage": "https://github.com/Eamonnzhang/vue-cards",
"author": "Eamonnzhang <5eamonn99@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Eamonnzhang/vue-cards.git"
},
"scripts": {
"init": "npm install commitizen -g && commitizen init cz-conventional-changelog --save-dev --save-exact && npm run bootstrap",
"bootstrap": "npm install && cd ./packages/theme-chalk && npm install",
"dev": "npm run build:entry && vue-cli-service serve",
"lint": "vue-cli-service lint",
"lib": "vue-cli-service build --target lib --name vue-cards --dest lib packages/index.js",
"clean": "rimraf lib && rimraf packages/*/lib",
"dev:style": "gulp --gulpfile packages/theme-chalk/gulpfile.js",
"build:docs": "vue-cli-service build",
"build:entry": "node build/build-entry.js ",
"build:lib": "node build/build-lib.js ",
"build:style": "gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk",
"publish:docs": "node build/publish-docs.js",
"release": "sh build/release.sh",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"dependencies": {
"vue": "^2.5.22"
},
"devDependencies": {
"vue-router": "^3.0.1",
"@vue/cli-plugin-babel": "^3.4.0",
"@vue/cli-plugin-eslint": "^3.4.0",
"@vue/cli-service": "^3.4.0",
"@vue/eslint-config-standard": "^4.0.0",
"babel-eslint": "^10.0.1",
"commitizen": "^3.0.7",
"cp-cli": "^2.0.0",
"cssnano": "^4.1.10",
"cz-conventional-changelog": "^2.1.0",
"eslint": "^5.8.0",
"eslint-plugin-vue": "^5.0.0",
"fs-extra": "^7.0.1",
"gh-pages": "^2.0.1",
"highlight.js": "^9.14.2",
"lint-staged": "^8.1.0",
"markdown-it-container": "^2.0.0",
"markdown-it-decorate": "^1.2.2",
"markdown-it-task-checkbox": "^1.0.6",
"node-sass": "^4.9.0",
"sass-loader": "^7.1.0",
"shelljs": "^0.8.3",
"signale": "^1.4.0",
"uppercamelcase": "^3.0.0",
"vue-markdown-loader": "^2.4.1",
"vue-template-compiler": "^2.5.21"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.js,!build/*": [
"vue-cli-service lint",
"git add"
],
"*.vue": [
"vue-cli-service lint",
"git add"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}