-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.12 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
47
48
49
{
"name": "standard-api-response-handler",
"version": "1.1.0",
"description": "A lightweight and standard API response handler for Node.js and Express.",
"repository": {
"type": "git",
"url": "git+https://github.com/Coderkube-App/api-response-handler.git"
},
"bugs": {
"url": "https://github.com/Coderkube-App/api-response-handler/issues"
},
"homepage": "https://github.com/Coderkube-App/api-response-handler#readme",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run build",
"test": "npm run build && node --test tests/index.test.js",
"example": "node example/server.js"
},
"files": [
"dist"
],
"keywords": [
"api",
"response",
"handler",
"express",
"standard",
"json",
"success",
"error",
"pagination"
],
"author": "Coderkube",
"license": "MIT",
"peerDependencies": {
"express": ">=4.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"express": "^4.18.2",
"typescript": "^5.0.0"
}
}