-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 978 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 978 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
43
44
{
"name": "vue-cli-plugin-cp-baidu",
"version": "0.0.4",
"description": "A plugin for vue-cli to init a project when using Configurable-Platform ",
"repository": {
"type": "git",
"url": "git+https://github.com/BingBlog/vue-cli-plugin-cp"
},
"homepage": "https://github.com/BingBlog/vue-cli-plugin-cp",
"main": "index.js",
"scripts": {
"lint": "eslint ./ --fix"
},
"keywords": [
"vue-cli-plugin",
"cp",
"configurable-platform"
],
"author": "abingblog@gmail.com",
"license": "MIT",
"devDependencies": {
"babel-eslint": "^10.0.3",
"eslint": "^6.3.0",
"eslint-plugin-vue": "^5.2.3",
"husky": ">=1",
"lint-staged": ">=8",
"rimraf": "^3.0.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E GIT_PARAMS"
}
}