-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.11 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
{
"name": "good-status",
"version": "2.2.0",
"description": "An express middleware to simplify api responses and status codes",
"main": "./dist/index.js",
"scripts": {
"test": "jest --detectOpenHandles",
"postinstall": "tsc",
"build": "tsc"
},
"keywords": [
"api",
"response",
"status codes"
],
"author": "Micah Effiong <micaiah.effiong@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/micaiah-effiong/good-status.git"
},
"bugs": {
"url": "https://github.com/micaiah-effiong/good-status/issues"
},
"homepage": "https://github.com/micaiah-effiong/good-status#readme",
"devDependencies": {
"@types/express": "^4.17.13",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.38",
"@types/supertest": "^2.0.12",
"combined-stream": "^1.0.8",
"express": "^4.17.1",
"jest": "^28.1.0",
"supertest": "^6.1.3",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"directories": {
"lib": "lib",
"test": "test",
"types": "types"
},
"types": "types/index.d.ts"
}