-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.63 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.63 KB
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
66
67
68
69
70
71
72
73
{
"name": "@picgo/bump-version",
"version": "2.0.0",
"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 .",
"lint:fix": "eslint --ext .js --fix ."
},
"husky": {
"hooks": {
"pre-commit": "npm run lint",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"repository": {
"type": "git",
"url": "https://github.com/PicGo/bump-version"
},
"author": "Molunerfinn",
"license": "MIT",
"bugs": {
"url": "https://github.com/PicGo/bump-version/issues"
},
"homepage": "https://github.com/PicGo/bump-version#readme",
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^17.23.1",
"eslint-plugin-promise": "^7.2.1"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": ".cz-config.js"
}
},
"commitlint": {
"extends": [
"./commitlint-picgo"
]
},
"dependencies": {
"@commitlint/cli": "^7.5.2",
"chalk": "^4.1.2",
"commitizen": "^4.2.3",
"compare-func": "^2.0.0",
"conventional-changelog": "^3.0.6",
"cz-customizable": "^7.5.1",
"husky": "^1.3.1",
"inquirer": "^13.0.2",
"minimist": "^1.2.8",
"ora": "^3.4.0",
"q": "^1.5.1",
"semver": "^7.7.3"
},
"engines": {
"node": ">=20.0.0"
}
}