-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.27 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.27 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
46
{
"name": "endpoint-coverage",
"version": "0.2.4",
"description": "Allows checking the API endpoint coverage of you server.",
"scripts": {
"test": "jest --config jest.config.json",
"prepublishOnly": "rm -rf dist && tsc"
},
"keywords": [
"coverage",
"endpoints"
],
"repository": {
"type": "git",
"url": "https://github.com/tomastauer/endpoint-coverage"
},
"bugs": {
"url": "https://github.com/tomastauer/endpoint-coverage/issues"
},
"engines": {
"node": ">12.10.0"
},
"author": "Tomas Tauer",
"license": "ISC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"devDependencies": {
"@types/express": "^4.17.2",
"@types/jest": "^24.0.23",
"@types/supertest": "^2.0.8",
"@typescript-eslint/eslint-plugin": "^2.12.0",
"@typescript-eslint/parser": "^2.12.0",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.7.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.2.7",
"prettier": "^1.19.1",
"supertest": "^4.0.2",
"ts-jest": "^24.2.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.3"
},
"peerDependencies": {
"express": "^4.17.1"
}
}