-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
52 lines (52 loc) · 1.25 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
{
"name": "gittern",
"version": "0.3.0",
"description": "instrumental git extensions with shelljs",
"bin": {
"git-align": "./git-align.js",
"git-br": "./git-br.js",
"git-close": "./git-close.js",
"git-each": "./git-each.js",
"git-origin": "./git-origin.js",
"git-pub": "./git-pub.js",
"git-rename": "./git-rename.js",
"git-repo": "./git-repo.js",
"git-sync": "./git-sync.js",
"git-tr": "./git-tr.js",
"git-url": "./git-url.js",
"git-rolltag": "./git-rolltag.js",
"git-pick": "./git-pick.js",
"git-cherries": "./git-cherries.js",
"git-find": "./git-find.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git://github.com/garryyao/gittern.git"
},
"engines": {
"node": ">=4"
},
"keywords": [
"git",
"shell",
"extension",
"bash"
],
"author": "[email protected]",
"license": "ISC",
"bugs": {
"url": "https://github.com/garryyao/gittern/issues"
},
"homepage": "https://github.com/garryyao/gittern",
"dependencies": {
"bash-color": "0.0.3",
"commander": "^2.3.0",
"open": "0.0.5",
"optimist": "^0.6.1",
"shelljs": "^0.3.0",
"underscore.string": "^2.3.3"
}
}