-
Notifications
You must be signed in to change notification settings - Fork 118
/
package.json
89 lines (89 loc) · 1.88 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@koa/bodyparser",
"version": "5.1.1",
"description": "Koa body parsing middleware",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"lint": "xo",
"lint:fix": "xo --fix",
"test": "jest --detectOpenHandles",
"test-ci": "npm run test -- --coverage",
"prepublishOnly": "npm run build"
},
"keywords": [
"koa",
"body",
"request-body",
"bodyParser",
"json",
"urlencoded",
"text",
"xml"
],
"author": {
"name": "dead_horse",
"email": "[email protected]",
"url": " http://deadhorse.me"
},
"contributors": [
{
"name": "Imed Jaberi",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@types/co-body": "^6.1.0",
"@types/jest": "^29.5.0",
"@types/koa": "^2.13.6",
"@types/lodash.merge": "^4.6.7",
"@types/node": "^18.15.11",
"@types/supertest": "^2.0.12",
"@types/type-is": "^1.6.3",
"eslint-config-xo-lass": "^2.0.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"koa": "^2.14.1",
"supertest": "^6.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"tsup": "^6.7.0",
"typescript": "^5.0.3",
"xo": "^0.54.2"
},
"dependencies": {
"co-body": "^6.1.0",
"lodash.merge": "^4.6.2",
"type-is": "^1.6.18"
},
"peerDependencies": {
"koa": "^2.14.1"
},
"engines": {
"node": ">= 16"
},
"repository": {
"type": "git",
"url": "git://github.com/koajs/bodyparser.git"
},
"bugs": {
"url": "https://github.com/koajs/body-parser/issues"
},
"homepage": "https://github.com/koajs/body-parser",
"publishConfig": {
"access": "public"
}
}