Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
91 lines (91 loc) · 3.23 KB

File metadata and controls

91 lines (91 loc) · 3.23 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.15.1",
"homepage": "http://nodegit.org",
"keywords": [
"libgit2",
"git2",
"git",
"native"
],
"license": "MIT",
"author": "Tim Branyen (@tbranyen)",
"contributors": [
{
"name": "John Haley",
"email": "john@haley.io"
},
{
"name": "Max Korp",
"email": "maxkorp@8bytealchemy.com"
}
],
"main": "dist/nodegit.js",
"repository": {
"type": "git",
"url": "git://github.com/nodegit/nodegit.git"
},
"directories": {
"build": "./build",
"lib": "./lib"
},
"engines": {
"node": ">= 0.12"
},
"dependencies": {
"fs-extra": "~0.26.2",
"lodash": "^4.13.1",
"nan": "^2.2.0",
"node-gyp": "^3.3.1",
"node-pre-gyp": "~0.6.15",
"promisify-node": "~0.3.0"
},
"devDependencies": {
"aws-sdk": "^2.3.19",
"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",
"mocha": "~2.3.4"
},
"vendorDependencies": {
"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 lifecycleScripts/postinstall",
"preinstall": "node lifecycleScripts/preinstall",
"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"
}
}
Morty Proxy This is a proxified and sanitized view of the page, visit original site.