-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.47 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
59
60
{
"name": "vapper-configer-modern",
"version": "0.0.4",
"description": "Vapper configer for modern build",
"main": "index.js",
"keywords": [
"vue",
"ssr",
"vapper",
"webpack",
"configer"
],
"author": "thierrymichel <[email protected]> (https://www.epic.net)",
"license": "SEE LICENSE IN UNLICENSE",
"repository": {
"type": "git",
"url": "git+https://github.com/epicagency/vapper-configer-modern.git"
},
"homepage": "https://github.com/epicagency/vapper-configer-modern#readme",
"bugs": {
"url": "https://github.com/epicagency/vapper-configer-modern/issues"
},
"scripts": {
"lint": "eslint index.js",
"lint:staged": "lint-staged",
"release": "npm test && standard-version",
"test": "echo \"Error: no test specified\" && exit 0"
},
"husky": {
"hooks": {
"pre-commit": "yarn lint:staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-ccgls"
},
"cz-ccgls": {
"useScopes": false
}
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"commitizen": "^4.1.2",
"commitlint-config-ccgls": "^1.2.0",
"cz-ccgls": "^0.2.3",
"eslint": "^7.2.0",
"husky": "4",
"lint-staged": "^10.2.9",
"prettier": "^2.0.5"
},
"peerDependencies": {
"@vapper/configer-vue-cli": "^1.1.1"
},
"dependencies": {
"standard-version": "^8.0.0"
}
}