-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
48
{
"name": "@rovahub/express-response",
"version": "1.0.0",
"description": "This Express plugin for API json response.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://github.com/rovahub/express-response#readme",
"bugs": {
"url": "https://github.com/rovahub/express-response/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rovahub/express-response.git",
"repository": "rovahub/express-response"
},
"author": "RovaHub Technologies <[email protected]> (https://rovahub.vn)",
"scripts": {
"build": "tsc",
"test": "jest --config=jest.config.json"
},
"keywords": [
"express-response",
"rovahub",
"express"
],
"engines": {
"npm": ">=4.0.0"
},
"files": [
"README.md",
"LICENSE",
"dist/*"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/express": "4.17.3",
"@types/jest": "25.2.1",
"@types/node": "13.11.1",
"jest": "25.3.0",
"prettier": "2.0.5",
"ts-jest": "25.3.1",
"typescript": "4.6.3"
},
"dependencies": {
"express": "4.17.3"
}
}