forked from Itiviti/git-bare-node-rest-api
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 949 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 949 Bytes
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
{
"name": "git-bare-node-rest-api",
"description": "A library providing a readonly restful Git API over a set of bare GIT repositories",
"version": "0.1.0",
"author": "Francois Valdy <francois.valdy@gmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/Ullink/node-bare-node-git-rest-api.git"
},
"main": "./rest-api",
"scripts": {
"test": "npm build"
},
"keywords": [
"git",
"bare",
"rest",
"express"
],
"dependencies": {
"async": "0.2.9",
"cors": "^2.7.1",
"dive": "0.3.0",
"express": "3.x",
"lodash": "^4.0.1",
"mkdirp": "0.3.5",
"q": "0.9.6",
"rimraf": "2.2.5",
"rx": "4.0.7",
"rx-node": "^1.0.1",
"signals": "~1.0.0",
"temp": "0.6.0",
"verror": "^1.6.1",
"winston": "0.7.2"
},
"devDependencies": {
"mocha": "1.15.1",
"should": "2.1.1",
"supertest": "0.8.2"
},
"engines": {
"node": ">=0.10"
}
}