-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
101 lines (101 loc) · 2.39 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.2.0",
"libgit2": {
"sha": "4af08d9f69f151f6362df51d7d7f41527e2af05c",
"version": "0.21.2"
},
"libssh2": {
"url": "http://www.libssh2.org/download/libssh2-1.4.3.tar.gz",
"version": "1.4.3"
},
"http_parser": {
"url": "https://github.com/joyent/http-parser/archive/v2.3.tar.gz",
"version": "2.3.0",
"0.10": {
"url": "https://github.com/joyent/http-parser/archive/v2.0.tar.gz",
"version": "2.0.0"
}
},
"homepage": "http://nodegit.org",
"keywords": [
"libgit2",
"git2",
"git",
"native"
],
"license": "MIT",
"author": "Tim Branyen (@tbranyen)",
"contributors": [
{
"name": "Michael Robinson",
"email": "[email protected]"
},
{
"name": "Nick Kallen"
},
{
"name": "John Haley",
"email": "[email protected]"
},
{
"name": "Max Korp"
}
],
"main": "lib/nodegit.js",
"repository": {
"type": "git",
"url": "git://github.com/nodegit/nodegit.git"
},
"directories": {
"build": "./build",
"lib": "./lib"
},
"engines": {
"node": ">= 0.8"
},
"bundledDependencies": [
"node-pre-gyp"
],
"dependencies": {
"combyne": "~0.6.2",
"fs-extra": "^0.12.0",
"lodash": "^2.4.1",
"nan": "~1.3.0",
"node-gyp": "~1.0.2",
"node-pre-gyp": "~0.5.27",
"nodegit-promise": "~1.0.0",
"promise": "~6.0.0",
"promisify-node": "~0.1.2",
"q": "~1.0.1",
"request": "~2.45.0",
"rimraf": "~2.2.8",
"tar": "~1.0.1",
"which": "~1.0.5"
},
"devDependencies": {
"async": "~0.9.0",
"aws-sdk": "~2.0.18",
"istanbul": "~0.3.2",
"jshint": "~2.5.6",
"mocha": "~1.21.4",
"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",
"cov": "node test",
"mocha": "mocha test/runner test/tests",
"test": "npm run lint && npm run cov",
"missing-tests": "node generate/missing-tests",
"publish": "node-pre-gyp package && node-pre-gyp publish",
"generate": "node generate/setup && node generate",
"install": "npm run generate && node install",
"rebuild": "BUILD_ONLY=true npm run generate && node-gyp configure build"
}
}