-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.1 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
47
{
"name": "git-express",
"version": "1.0.5",
"description": "Powerful git middleware for easy building git servers in nodejs",
"keywords": [
"git", "express", "middleware"
],
"engines": {
"node": ">= 12.13"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"devDependencies": {
"@types/node": "~12.12",
"@typescript-eslint/eslint-plugin": "~3.9.1",
"@typescript-eslint/parser": "~3.9.1",
"eslint": "~7.7.0",
"eslint-config-prettier": "~6.11.0",
"eslint-plugin-jest": "~23.20.0",
"prettier": "~2.0.5",
"rimraf": "~3.0.2",
"ts-jest": "~26.2.0",
"tsutils": "~3.17.0",
"typescript": "~4.0.2",
"@types/express": "^4.17.8",
"express": "^4.17.1"
},
"scripts": {
"clean": "rimraf coverage build tmp",
"build": "tsc -p tsconfig.release.json",
"build:watch": "tsc -w -p tsconfig.release.json",
"lint": "eslint . --ext .ts,.tsx"
},
"author": "MWGuy <[email protected]>",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/MWGuy/git-express"
},
"dependencies": {
"tslib": "~2.0.1"
},
"volta": {
"node": "12.18.3",
"npm": "6.14.5"
}
}