-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1009 Bytes
/
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
{
"name": "express-camelcase-middleware",
"version": "0.3.0",
"description": "Convert requests to and from snake_case to camelCase",
"main": "dist/index.js",
"scripts": {
"tsc": "tsc",
"build": "rm -rf dist && tsc",
"test": "npm run build && jest"
},
"keywords": [
"express",
"camelcase",
"snakecase"
],
"author": "Tim Rexer",
"contributors": [
"Sakibul Alam (https://github.com/sakibulalam)"
],
"license": "ISC",
"dependencies": {
"camelcase-keys": "6.2.x",
"snakecase-keys": "3.2.x"
},
"devDependencies": {
"@types/express": "^4.17.7",
"@types/express-unless": "^0.5.1",
"@types/jest": "^26.0.12",
"@types/supertest": "^2.0.10",
"express": "4.17.x",
"express-unless": "0.5.x",
"from": "^0.1.7",
"http-status-codes": "^2.1.2",
"jest": "^26.4.2",
"supertest": "^4.0.2",
"ts-jest": "^26.3.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
},
"files": [
"dist",
"package.json"
]
}