forked from nodegit/test
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
78 lines (78 loc) · 1.87 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.1.4",
"libgit2": {
"sha": "28f087c8642ff9c8dd6964e101e6d8539db6281a",
"version": "0.21.0"
},
"homepage": "https://github.com/tbranyen/nodegit",
"keywords": [
"libgit2",
"git2",
"git",
"native"
],
"license": "MIT",
"author": "Tim Branyen (@tbranyen)",
"contributors": [
{
"name": "Michael Robinson",
"email": "[email protected]"
},
{
"name": "Nick Kallen"
}
],
"main": "lib/nodegit.js",
"repository": {
"type": "git",
"url": "git://github.com/tbranyen/nodegit.git"
},
"directories": {
"build": "./build",
"lib": "./lib"
},
"engines": {
"node": ">= 0.8"
},
"bundledDependencies": [
"node-pre-gyp"
],
"dependencies": {
"fs-extra": "~0.9.1",
"nan": "~1.2.0",
"node-gyp": "~0.13.1",
"node-pre-gyp": "~0.5.16",
"q": "~1.0.1",
"ejs": "~1.0.0",
"request": "~2.36.0",
"rimraf": "~2.2.8",
"tar": "~0.1.19",
"which": "~1.0.5",
"promise": "~4.0.0",
"promisify-node": "~0.1.2"
},
"devDependencies": {
"async": "~0.9.0",
"aws-sdk": "~2.0.0-rc.20",
"istanbul": "~0.2.14",
"jshint": "~2.5.1",
"mocha": "~1.20.1",
"nodeunit": "~0.9.0"
},
"binary": {
"module_name": "nodegit",
"module_path": "./build/Release/",
"host": "https://s3.amazonaws.com/nodegit/nodegit/"
},
"scripts": {
"lint": "jshint lib test/tests",
"mocha": "istanbul cover node_modules/mocha/bin/_mocha -- test/runner test/tests --report=lcov",
"test": "npm run lint && npm run mocha",
"publish": "node-pre-gyp package && node-pre-gyp publish",
"generate": "node generate/setup && node generate",
"install": "npm run generate && node install",
"rebuild": "npm run generate && node-gyp configure build"
}
}