-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.17 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.17 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
{
"name": "vue-cli-plugin-cp-template-data-report",
"version": "0.0.5",
"description": "A plugin for vue-cli-plugin-cp to quickly build a data-report page",
"repository": {
"type": "git",
"url": "git+https://github.com/BingBlog/vue-cli-plugin-cp-template-data-report"
},
"homepage": "https://github.com/BingBlog/vue-cli-plugin-cp-template-data-report",
"main": "index.js",
"scripts": {
"format": "prettier --write \"./**/*.{js,vue,json}\"",
"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-config-prettier": "^6.1.0",
"eslint-plugin-prettier": "^3.1.0",
"eslint-plugin-vue": "^5.2.3",
"husky": ">=1",
"lint-staged": ">=8",
"prettier": "^1.18.2"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,vue}": [
"eslint --fix",
"prettier --write",
"git add"
]
},
"gitHooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E GIT_PARAMS"
}
}