-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.67 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "modular-body",
"version": "0.6.0",
"description": "Modular and lightweight body parser middleware for Node.js",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/floratmin/modular-body.git"
},
"scripts": {
"dev": "node --loader ts-node/esm src/index.ts",
"build": "rm -fr dist/* && tsc",
"docs": "rm -fr docs/* && typedoc --out docs src/**",
"test": "jest",
"test:coverage": "jest --coverage"
},
"type": "module",
"keywords": [
"body-parser"
],
"files": [
"LICENSE.md",
"README.md",
"dist"
],
"author": "Florian Murat Koch <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"bytes": "^3.1.1",
"content-type": "^1.0.4",
"http-errors": "^1.8.1",
"on-finished": "^2.3.0",
"unpipe": "^1.0.0"
},
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/content-type": "^1.1.5",
"@types/http-errors": "^1.8.1",
"@types/jest": "^27.0.2",
"@types/node": "^16.11.7",
"@types/on-finished": "^2.3.1",
"@types/qs": "^6.9.7",
"@types/supertest": "^2.0.11",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"base62str": "^1.0.9",
"c8": "^7.10.0",
"eslint": "^8.2.0",
"eslint-plugin-jest": "^25.3.0",
"jest": "^27.3.1",
"lzw-stream": "^1.0.0",
"nodemon": "^2.0.15",
"qs": "^6.10.1",
"supertest": "^6.1.6",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"ts-node-dev": "^1.1.8",
"typedoc": "^0.22.11",
"typescript": "^4.5.2"
}
}