FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
nodegit/package.json at v0.27.0 · nodegit/nodegit · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
nodegit
/
nodegit
Public
Notifications
You must be signed in to change notification settings
Fork
700
Star
5.8k
Code
Issues
343
Pull requests
20
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
nodegit
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
95 lines (95 loc) · 3.34 KB
Breadcrumbs
nodegit
/
package.json
Copy path
File metadata and controls
95 lines (95 loc) · 3.34 KB
Raw
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
92
93
94
95
{
"name"
:
"
nodegit
"
,
"description"
:
"
Node.js libgit2 asynchronous native bindings
"
,
"version"
:
"
0.27.0
"
,
"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
"
},
{
"name"
:
"
Tyler Ang-Wanek
"
,
"email"
:
"
tylerw@axosoft.com
"
}
],
"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
"
,
"got"
:
"
^10.7.0
"
,
"json5"
:
"
^2.1.0
"
,
"lodash"
:
"
^4.17.14
"
,
"nan"
:
"
^2.14.0
"
,
"node-gyp"
:
"
^4.0.0
"
,
"node-pre-gyp"
:
"
^0.13.0
"
,
"ramda"
:
"
^0.25.0
"
,
"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
"
},
"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
"
}
}
Back
|
FazBrowse Home
|
New Git URL