forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 3.33 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
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.13.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": "dist/nodegit.js",
"repository": {
"type": "git",
"url": "git://github.com/nodegit/nodegit.git"
},
"directories": {
"build": "./build",
"lib": "./lib"
},
"engines": {
"node": ">= 0.12"
},
"bundledDependencies": [
"node-pre-gyp"
],
"dependencies": {
"fs-extra": "~0.26.2",
"node-pre-gyp": "~0.6.15",
"promisify-node": "~0.3.0"
},
"devDependencies": {
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"clean-for-publish": "~1.0.2",
"combyne": "~0.8.1",
"coveralls": "~2.11.4",
"istanbul": "~0.3.20",
"js-beautify": "~1.5.10",
"jshint": "~2.8.0",
"lcov-result-merger": "~1.0.2",
"lodash": "~3.10.1",
"mocha": "~2.3.4",
"nan": "^2.2.0",
"node-gyp": "~3.0.3",
"nw-gyp": "~0.12.4"
},
"vendorDependencies": {
"libgit2": {
"sha": "e8feafe32007ebd16a61820c70abd221655d053c"
},
"libssh2": "1.6.0",
"http_parser": "2.5.0"
},
"binary": {
"module_name": "nodegit",
"module_path": "./build/Release/",
"host": "https://nodegit.s3.amazonaws.com/nodegit/nodegit/"
},
"scripts": {
"babel": "babel --presets es2015 -d ./dist ./lib",
"cov": "npm run cppcov && npm run filtercov && npm run mergecov",
"coveralls": "cat ./test/coverage/merged.lcov | coveralls",
"cppcov": "mkdir -p test/coverage/cpp && ./lcov-1.10/bin/lcov --gcov-tool /usr/bin/gcov-4.9 --capture --directory build/Release/obj.target/nodegit/src --output-file test/coverage/cpp/lcov_full.info",
"filtercov": "./lcov-1.10/bin/lcov --extract test/coverage/cpp/lcov_full.info $(pwd)/src/* $(pwd)/src/**/* $(pwd)/include/* $(pwd)/include/**/* --output-file test/coverage/cpp/lcov.info && rm test/coverage/cpp/lcov_full.info",
"generateJson": "node generate/scripts/generateJson",
"generateMissingTests": "node generate/scripts/generateMissingTests",
"generateNativeCode": "node generate/scripts/generateNativeCode",
"install": "node lifecycleScripts/install",
"installDebug": "BUILD_DEBUG=true npm install",
"lint": "jshint lib test/tests test/utils examples lifecycleScripts",
"mergecov": "lcov-result-merger 'test/**/*.info' 'test/coverage/merged.lcov' && ./lcov-1.10/bin/genhtml test/coverage/merged.lcov --output-directory test/coverage/report",
"mocha": "mocha test/runner test/tests --timeout 15000",
"mochaDebug": "mocha --debug-brk test/runner test/tests --timeout 15000",
"postinstall": "node postinstall.js",
"prepublish": "node lifecycleScripts/prepareForBuild.js && npm run babel",
"rebuild": "node generate && npm run babel && node-gyp configure build",
"rebuildDebug": "node generate && npm run babel && node-gyp configure --debug build",
"recompile": "node-gyp configure build",
"recompileDebug": "node-gyp configure --debug build",
"test": "npm run lint && node --expose-gc test",
"xcodeDebug": "node-gyp configure -- -f xcode"
}
}