forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 3.45 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
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.23.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]"
},
{
"name": "Tyler Ang-Wanek",
"email": "[email protected]"
}
],
"main": "dist/nodegit.js",
"repository": {
"type": "git",
"url": "git://github.com/nodegit/nodegit.git"
},
"directories": {
"build": "./build",
"lib": "./lib"
},
"engines": {
"node": ">= 6"
},
"dependencies": {
"fs-extra": "^7.0.0",
"lodash": "^4.17.11",
"nan": "^2.11.1",
"node-gyp": "^3.8.0",
"node-pre-gyp": "^0.11.0",
"promisify-node": "~0.3.0",
"ramda": "^0.25.0",
"request-promise-native": "^1.0.5",
"tar-fs": "^1.16.3"
},
"devDependencies": {
"aws-sdk": "^2.326.0",
"babel-cli": "^6.7.7",
"babel-preset-es2015": "^6.6.0",
"cheerio": "^1.0.0-rc.2",
"clean-for-publish": "~1.0.2",
"combyne": "~0.8.1",
"coveralls": "^3.0.2",
"istanbul": "^0.4.5",
"js-beautify": "~1.5.10",
"jshint": "^2.9.6",
"lcov-result-merger": "^3.1.0",
"mocha": "^5.2.0",
"walk": "^2.3.9"
},
"vendorDependencies": {
"libssh2": "1.8.0",
"http_parser": "2.5.0"
},
"binary": {
"module_name": "nodegit",
"module_path": "./build/Release/",
"host": "https://axonodegit.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/preinstall && 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 --expose-gc test/runner test/tests --timeout 15000",
"mochaDebug": "mocha --expose-gc --debug-brk test/runner test/tests --timeout 15000",
"postinstall": "node lifecycleScripts/postinstall",
"prepublish": "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"
}
}