-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 940 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 940 Bytes
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 <christkv@gmail.com>"
, "contributors" : [ "Vincent Giersch <vincent@giersch.fr>" ]
, "repository" : { "type" : "git"
, "url" : "git@github.com:christkv/node-git.git" }
, "bugs" : { "mail" : "node-git@googlegroups.com"
, "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" }
}