-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.06 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
{
"name": "dmallmax-vue-preset",
"version": "1.0.0",
"description": "vue 项目初始化模板",
"repository": {
"type": "git",
"url": "git+https://github.com/QxQstar/dmallmax-vue-preset.git"
},
"scripts": {
"lint": "eslint --fix generator/**/*.{js,vue}",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0"
},
"devDependencies": {
"@commitlint/cli": "^8.1.0",
"@commitlint/config-conventional": "^8.1.0",
"babel-eslint": "^10.0.3",
"conventional-changelog-cli": "^2.0.23",
"eslint": "^6.8.0",
"eslint-plugin-vue": "^6.1.2",
"husky": "^3.0.4",
"lint-staged": "^8.1.5"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"generator/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"author": "何遇",
"license": "ISC",
"bugs": {
"url": "https://github.com/QxQstar/dmallmax-vue-preset/issues"
},
"homepage": "https://github.com/QxQstar/dmallmax-vue-preset#readme"
}