-
Notifications
You must be signed in to change notification settings - Fork 699
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 971 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 971 Bytes
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
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.0.71",
"homepage": "https://github.com/tbranyen/nodegit",
"keywords": [
"libgit2",
"git2",
"git",
"native"
],
"license": "GPLv2",
"author": "Tim Branyen <[email protected]> (http://twitter.com/tbranyen)",
"contributors": [
{
"name": "Michael Robinson",
"email": "[email protected]"
}
],
"main": "./lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/tbranyen/nodegit.git"
},
"directories": {
"build": "./build",
"lib": "./lib"
},
"engines": {
"node": "~0.8"
},
"dependencies": {
"node-gyp": "~0.8.2"
},
"devDependencies": {
"adm-zip": "0.2.x",
"request": "2.9.x",
"async": ">= 0.1.21",
"nodeunit": "0.7.x",
"rimraf": "1.0.x"
},
"scripts": {
"install": "node install.js",
"test": "cd test && nodeunit *.js"
}
}