-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
65 lines (65 loc) · 1.6 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
61
62
63
64
65
{
"name": "@picgo/bump-version",
"version": "1.1.2",
"description": "",
"main": "index.js",
"bin": {
"bump-version": "./bin/bump-version"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "echo \"Error: no test specified\"",
"cz": "git-cz",
"release": "node ./bin/bump-version",
"lint": "eslint --ext .js -f ./node_modules/eslint-friendly-formatter .",
"lint:fix": "eslint --ext .js -f ./node_modules/eslint-friendly-formatter --fix ."
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/PicGo/bump-version.git"
},
"author": "Molunerfinn",
"license": "MIT",
"bugs": {
"url": "https://github.com/PicGo/bump-version/issues"
},
"homepage": "https://github.com/PicGo/bump-version#readme",
"devDependencies": {
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-friendly-formatter": "^4.0.1",
"eslint-plugin-import": "^2.16.0",
"eslint-plugin-node": "^8.0.1",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"commitlint": {
"extends": [
"./commitlint-picgo"
]
},
"dependencies": {
"@commitlint/cli": "^7.5.2",
"commitizen": "^4.2.3",
"conventional-changelog": "^3.0.6",
"cz-customizable": "^5.8.0",
"ora": "^3.4.0",
"husky": "^1.3.1"
}
}