-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
70 lines (70 loc) · 1.82 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
66
67
68
69
70
{
"name": "bumpr",
"version": "2.16.3",
"description": "Bump the version of an package based on a Pull Request",
"type": "module",
"bin": {
"bumpr": "./bin/cli.js"
},
"repository": {
"type": "git",
"url": "git@github.com:all-i-code/bumpr.git"
},
"engines": {
"node": ">= 18.0.0"
},
"keywords": [
"github",
"pull-request",
"version",
"semver",
"bump"
],
"author": "Adam Meadows [https://github.com/job13er]",
"contributors": [
"Matthew Dahl [https://github.com/sandersky]",
"Steven Glanzer [https://github.com/sglanzer]",
"Zak Henry [https://github.com/zakhenry]"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/all-i-code/bumpr/issues"
},
"homepage": "https://github.com/all-i-code/bumpr#readme",
"scripts": {
"lint": "eslint *.cjs bin src",
"watch-test": "jest --coverage --watch",
"test": "npm run lint && jest --coverage",
"prepare": "husky install"
},
"dependencies": {
"chalk": "^4.1.1",
"commander": "^8.0.0",
"cosmiconfig": "^7.0.0",
"lodash": "^4.17.21",
"mime-types": "^2.1.22",
"moment-timezone": "^0.5.35",
"node-fetch": "^2.6.1",
"promise": "^8.1.0",
"replace-in-file": "^6.3.2",
"semver": "^7.5.4"
},
"devDependencies": {
"@babel/eslint-parser": "^7.22.15",
"@babel/preset-env": "^7.22.20",
"babel-jest": "^29.7.0",
"babel-plugin-transform-import-meta": "^2.2.1",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier-airbnb": "^0.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsx-a11y": "^6.5.1",
"eslint-plugin-react": "^7.29.4",
"eslint-plugin-react-hooks": "^4.4.0",
"freezly": "^2.0.2",
"husky": "^7.0.0",
"jest": "^27.5.1",
"lint-staged": "^12.3.8",
"prettier": "^2.3.1"
}
}