-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.17 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
{
"name": "picgo-core",
"version": "1.0.0",
"description": "Docs for PicGo",
"main": "index.js",
"scripts": {
"dev": "vuepress dev docs --temp .temp",
"build": "vuepress build docs",
"cz": "git-cz"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PicGo/PicGo-Doc.git"
},
"keywords": [
"PicGo",
"Docs",
"Vuepress"
],
"author": "Molunerfinn",
"license": "MIT",
"bugs": {
"url": "https://github.com/PicGo/PicGo-Doc/issues"
},
"homepage": "https://github.com/PicGo/PicGo-Doc#readme",
"devDependencies": {
"@commitlint/cli": "^7.5.2",
"@picgo/bump-version": "^1.0.2",
"commitizen": "^3.0.7",
"conventional-changelog": "^3.1.3",
"cz-customizable": "^5.10.0",
"husky": "^1.3.1",
"vuepress": "^1.9.7"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "./node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./node_modules/@picgo/bump-version/.cz-config.js"
}
},
"commitlint": {
"extends": [
"./node_modules/@picgo/bump-version/commitlint-picgo"
]
}
}