forked from gabrielcsapo/node-git-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.05 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
{
"name": "node-git-server",
"version": "0.4.2",
"description": "🎡 A configurable git server written in Node.js",
"author": "Gabriel J. Csapo <[email protected]>",
"contributors": [
{
"name": "echopoint",
"email": "echopoint <[email protected]>"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/gabrielcsapo/node-git-server/issues"
},
"homepage": "https://github.com/gabrielcsapo/node-git-server#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/gabrielcsapo/node-git-server.git"
},
"main": "index.js",
"engine": {
"node": ">= 6"
},
"scripts": {
"lint": "eslint .",
"test": "tape test/*.js",
"coverage": "tap test/*.js --coverage --coverage-report=lcov",
"generate-docs": "tryitout && jsdoc -c jsdoc.json"
},
"dependencies": {
"through": "^2.3.8"
},
"devDependencies": {
"async": "^2.6.0",
"docdash": "^0.4.0",
"eslint": "^4.11.0",
"jsdoc": "^3.5.5",
"tap": "^10.7.3",
"tape": "^4.8.0",
"tryitout": "^1.2.0"
}
}