-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.77 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
{
"name": "@ts-stack/body-parser",
"type": "module",
"description": "Node.js body parser writen in TypeScript, in promise style, in ESM format, without support Node.js version < 20.6.0.",
"version": "1.2.0",
"license": "MIT",
"repository": "https://github.com/ts-stack/body-parser",
"exports": {
"./package.json": {
"default": "./package.json"
},
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"types": "./src",
"scripts": {
"build": "tsc -b tsconfig.build.json",
"build-test": "tsc -b tsconfig.unit.json",
"lint": "eslint .",
"test": "npm run build-test && npm run esm-jest",
"esm-jest": "node --env-file=.env --experimental-vm-modules --no-warnings=ExperimentalWarning --enable-source-maps node_modules/jest/bin/jest.js"
},
"keywords": [
"ts-stack",
"body-parser"
],
"dependencies": {
"@ts-stack/type-is": "^1.0.1",
"bytes": "3.1.2",
"content-type": "~1.0.5",
"debug": "4.3.5",
"http-errors": "2.0.0",
"iconv-lite": "0.6.3",
"qs": "6.12.3"
},
"devDependencies": {
"@types/bytes": "^3.1.4",
"@types/content-type": "^1.1.8",
"@types/debug": "^4.1.12",
"@types/eslint": "^8.56.10",
"@types/http-errors": "^2.0.4",
"@types/jest": "^29.5.12",
"@types/methods": "^1.1.4",
"@types/node": "^20.14.10",
"@types/qs": "^6.9.15",
"@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^7.16.0",
"@typescript-eslint/parser": "^7.16.0",
"eslint": "^9.7.0",
"jest": "^29.7.0",
"methods": "1.1.2",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"safe-buffer": "^5.2.1",
"supertest": "7.0.0",
"ts-node": "^10.9.2",
"typescript": "~5.5.4"
},
"engines": {
"node": ">= 20.6.0"
}
}