-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1011 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
40
41
42
43
44
45
46
47
{
"name": "git-sweep",
"version": "0.4.0",
"description": "Clean up remote branches for git repo",
"main": "lib/sweep.js",
"keywords": [
"git",
"clean",
"remote"
],
"bin": {
"git-sweep": "bin/git-sweep"
},
"bugs": {
"url": "https://github.com/pswai/git-sweep/issues"
},
"files": [
"/bin",
"/lib"
],
"dependencies": {
"babel-polyfill": "^6.22.0",
"commander": "^2.9.0",
"moment": "^2.17.1",
"nodegit": "0.24.0",
"readline-sync": "^1.4.6"
},
"devDependencies": {
"babel-cli": "^6.22.2",
"babel-core": "^6.22.1",
"babel-preset-env": "^1.1.8",
"rimraf": "^2.5.4"
},
"engines": {
"node": ">= 4"
},
"repository": {
"type": "git",
"url": "[email protected]:pswai/git-sweep.git"
},
"scripts": {
"build": "./node_modules/.bin/babel src --out-dir lib",
"prepublish": "./node_modules/.bin/rimraf lib && npm run build"
},
"author": "Wai Park Soon <[email protected]>",
"license": "MIT"
}