-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 949 Bytes
/
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
{
"name": "@0y0/git-delete-branch",
"version": "2.1.1",
"description": "Delete Git branches with interactive CLI.",
"bin": {
"gdb": "cli.js",
"git-delete-branch": "cli.js"
},
"repository": "https://github.com/o0y0o/git-delete-branch",
"author": "Jason Chung <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"keywords": [
"git",
"git branch",
"cli",
"terminal"
],
"scripts": {
"format": "prettier --write cli.js",
"pkg": "[ $(yarn info $npm_package_name version) != $npm_package_version ] && yarn publish || echo Skip publishing due to v$npm_package_version exist"
},
"dependencies": {
"chalk": "^4.1.2",
"inquirer": "^8.2.0",
"simple-git": "^2.48.0"
},
"devDependencies": {
"prettier": "^2.8.3"
},
"prettier": {
"arrowParens": "avoid",
"semi": false,
"singleQuote": true,
"trailingComma": "none"
}
}