forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
101 lines (101 loc) · 2.85 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.7",
"libgit2": {
"url": "https://github.com/libgit2/libgit2/tarball/d853fb9f24e0fe63b3dce9fbc04fd9cfe17a030b",
"sha": "d853fb9f24e0fe63b3dce9fbc04fd9cfe17a030b",
"version": "0.21.5"
},
"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": "John Haley",
"email": "[email protected]"
},
{
"name": "Max Korp",
"email": "[email protected]"
}
],
"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": {
"fs-extra": "^0.16.3",
"node-pre-gyp": "^0.6.2",
"nodegit-promise": "~1.0.0",
"npm": "^2.5.0",
"promisify-node": "^0.1.5",
"which-native-nodish": "^1.0.3"
},
"devDependencies": {
"combyne": "^0.6.4",
"istanbul": "^0.3.5",
"js-beautify": "^1.5.4",
"jshint": "^2.6.0",
"lodash": "^3.1.0",
"mocha": "~2.1.0",
"nan": "^1.6.2",
"node-gyp": "~1.0.2",
"nw-gyp": "^0.12.4",
"request": "^2.53.0",
"tar": "^1.0.3"
},
"binary": {
"module_name": "nodegit",
"module_path": "./build/Release/",
"host": "https://nodegit.s3.amazonaws.com/nodegit/nodegit/"
},
"scripts": {
"lint": "jshint lib test/tests examples lifecycleScripts",
"cov": "node --expose-gc test",
"mocha": "mocha test/runner test/tests",
"mochaDebug": "mocha --debug-brk test/runner test/tests",
"test": "npm run lint && npm run cov",
"generateJson": "node generate/scripts/generateJson",
"generateNativeCode": "node generate/scripts/generateNativeCode",
"generateMissingTests": "node generate/scripts/generateMissingTests",
"prepublish": "node lifecycleScripts/prepareForBuild.js",
"publish": "node-pre-gyp package && node-pre-gyp publish",
"install": "node lifecycleScripts/install",
"installDebug": "BUILD_DEBUG=true npm install",
"postinstall": "node lifecycleScripts/clean",
"recompile": "node-gyp configure build",
"rebuild": "node generate && node-gyp configure build",
"recompileDebug": "node-gyp configure --debug build",
"rebuildDebug": "node generate && node-gyp configure --debug build"
}
}