-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 986 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
{
"name": "@prashantns9/node-git-cleaner",
"version": "1.1.0",
"description": "This interactive command line tool helps you remove all the branches without having to type long git delete commands with the branch names. Just select the branch and delete it.",
"main": "index.js",
"bin": {
"node-git-cleaner": "index.js"
},
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prashantns9/node-git-cleaner.git"
},
"keywords": [
"git",
"branch",
"delete",
"automatic",
"tool",
"command",
"line"
],
"author": "Prashant Shinde (https://www.prashantshinde.in)",
"license": "MIT",
"bugs": {
"url": "https://github.com/prashantns9/node-git-cleaner/issues"
},
"homepage": "https://github.com/prashantns9/node-git-cleaner#readme",
"dependencies": {
"chalk": "^4.1.0",
"inquirer": "^7.3.3"
}
}