-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
46 lines (46 loc) · 1.04 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
{
"name": "nodegit-http",
"version": "0.2.1",
"description": "Read-only GitHub-like HTTP API atop nodegit using express.",
"main": "server.js",
"bin" : {
"nodegit-http" : "./server.js"
},
"scripts": {
"start": "node server.js",
"test": "mocha"
},
"repository" : {
"type": "git",
"url": "git@github.com:GitStarInc/nodegit-http.git"
},
"bugs" : {
"url": "https://github.com/GitStarInc/nodegit-http/issues"
},
"homepage" : "https://github.com/GitStarInc/nodegit-http",
"keywords": [
"git",
"rest",
"express",
"http"
],
"dependencies": {
"async" : "^0.9.0",
"express" : "^4.8.4",
"nodegit" : "0.1.4",
"debug" : "^1.0.4",
"underscore" : "^1.6.0",
"docopt" : "^0.4.0"
},
"devDependencies": {
"async" : "^0.9.0",
"express" : "^4.8.4",
"nodegit" : "0.1.4",
"debug" : "^1.0.4",
"underscore" : "^1.6.0",
"supertest" : "^0.14.0",
"mocha" : "^1.21.4"
},
"author": "GitStar Inc.",
"license": "MIT"
}