forked from nodegit/nodegit
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.4 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.4 KB
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
{
"name": "nodegit",
"description": "Node.js libgit2 asynchronous native bindings",
"version": "0.1.2",
"libgit2": {
"sha": "43cb8b32428b1b29994874349ec22eb5372e152c",
"version": "0.20.0"
},
"homepage": "https://github.com/tbranyen/nodegit",
"keywords": [
"libgit2",
"git2",
"git",
"native"
],
"license": "MIT",
"author": "Tim Branyen <tim@tabdeveloper.com> (http://twitter.com/tbranyen)",
"contributors": [
{
"name": "Michael Robinson",
"email": "mike@pagesofinterest.net"
}
],
"main": "index.js",
"browser": "browser.js",
"repository": {
"type": "git",
"url": "git://github.com/tbranyen/nodegit.git"
},
"directories": {
"build": "./build",
"lib": "./lib"
},
"engines": {
"node": ">= 0.8"
},
"dependencies": {
"request": "~2.25.0",
"node-gyp": "~0.13.0",
"tar": "~0.1.18",
"which": "~1.0.5",
"q": "~0.9.6",
"fs-extra": "0.6.0",
"nan": "0.8.0",
"rimraf": "~2.2.6"
},
"devDependencies": {
"jshint": "~2.4.4",
"nodeunit": "~0.8.6",
"ejs": "~1.0.0",
"async": "~0.2.10"
},
"scripts": {
"lint": "jshint src",
"install": "npm run codegen && node install.js",
"test": "cd test && nodeunit nodegit.js",
"codegen": "node build/codegen/t.js && node build/codegen/generate.js",
"browserify": "browserify . --noparse=build/libgit2.min.js > dist/nodegit.js"
}
}