-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.06 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.06 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
{
"name": "@fuubi/node-git-http-backend",
"version": "0.0.1",
"description": "Git HTTP Backend CGI binding for Node.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/fuubi/node-git-http-backend.git"
},
"bugs": {
"url": "https://github.com/fuubi/node-git-http-backend/issues"
},
"homepage": "https://github.com/fuubi/node-git-http-backend#readme",
"scripts": {
"build": "rimraf dist && tsc",
"init-dev-env": "cd dev && sh init-dev-env.sh && cd ..",
"dev": "nodemon --exec ts-node dev/server.ts --watch src",
"clean": "rimraf dist dev/test.git",
"test": "jest --watch",
"coverage": "jest --coverage"
},
"files": [
"dist",
"index.d.ts"
],
"keywords": [
"git",
"node.js",
"cgi",
"git_http_backend"
],
"author": "Fabrizio Parrillo",
"license": "MIT",
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node": "^13.13.2",
"jest": "^25.4.0",
"nodemon": "^2.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^25.4.0",
"ts-node": "^8.9.0",
"typescript": "^3.8.3"
}
}