forked from longshihui/vue-cli-plugin-publicpath
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.28 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
51
52
53
54
55
56
57
58
{
"name": "vue-cli-plugin-publicpath",
"version": "1.1.1",
"description": "rewrite assets public path",
"main": "./service/index.js",
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/longshihui/vue-cli-plugin-publicpath.git"
},
"keywords": [
"vue",
"cli",
"plugin",
"vue-cli-plugin",
"publicPath",
"rewrite",
"override"
],
"author": "colorless",
"license": "MIT",
"bugs": {
"url": "https://github.com/longshihui/vue-cli-plugin-publicpath/issues"
},
"homepage": "https://github.com/longshihui/vue-cli-plugin-publicpath#readme",
"devDependencies": {
"@vue/cli-service": "^3.3.0",
"commitizen": "^3.0.5",
"cz-conventional-changelog": "^2.1.0",
"husky": "^1.3.1",
"jest": "^23.6.0",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"vue-template-compiler": "^2.5.21"
},
"dependencies": {
"lodash": "^4.17.11",
"rewrite-css-publicpath-webpack-plugin": "^1.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"**/*.{js,vue,json,css,md}": [
"prettier --write",
"git add"
]
}
}