forked from christkv/node-git
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
21 lines (21 loc) · 940 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ "name" : "git"
, "description" : "A node.js library for git"
, "version" : "0.1.5"
, "author" : "Christian Amor Kvalheim <[email protected]>"
, "contributors" : [ "Vincent Giersch <[email protected]>" ]
, "repository" : { "type" : "git"
, "url" : "[email protected]:christkv/node-git.git" }
, "bugs" : { "mail" : "[email protected]"
, "web" : "http://groups.google.com/group/nodegit" }
, "main": "./lib/git/index"
, "directories" : { "lib" : "./lib/git" }
, "engines" : { "node" : ">=0.4.0" }
, "dependencies": {
"mime": "1.2.9",
"async": "0.2.9"
}
, "devDependencies":{ "nodeunit" : ">=0.5.1" }
, "licenses" : [ { "type" : "Apache License, Version 2.0"
, "url" : "http://www.apache.org/licenses/LICENSE-2.0" } ]
, "scripts" : { "test" : "./node_modules/.bin/nodeunit test" }
}