forked from zencoder/contribflow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.27 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
{
"name": "contribflow",
"description": "Contribflow is a suite of high-level repository operations for making open source contributions easier. It's based on the git-flow branching model with modifications for the open souce workflow.",
"version": "0.3.5",
"homepage": "https://github.com/zencoder/contribflow",
"author": {
"name": "Steve Heffernan",
"email": "steve@zencoder.com",
"url": "heff.me"
},
"repository": {
"type": "git",
"url": "https://github.com/zencoder/contribflow.git"
},
"bugs": {
"url": "https://github.com/zencoder/contribflow/issues"
},
"licenses": [
{
"type": "Apache-2.0",
"url": "https://github.com/zencoder/contribflow/blob/master/LICENSE-Apache-2.0"
}
],
"main": "lib/contribflow",
"bin": {
"contrib": "./bin/contrib"
},
"engines": {
"node": ">= 0.8.0"
},
"scripts": {
"test": "grunt nodeunit"
},
"devDependencies": {
"grunt-contrib-jshint": "~0.1.1",
"grunt-contrib-nodeunit": "~0.1.2",
"grunt-contrib-watch": "~0.2.0",
"grunt": "~0.4.1"
},
"keywords": [],
"dependencies": {
"prompt": "0.2.9",
"github": "~0.1.8",
"findup-sync": "~0.1.2",
"moment": "~2.0.0",
"shelljs": "~0.1.4",
"colors": "~0.6.0-1",
"semver": "~1.1.4"
}
}