-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
46 lines (46 loc) · 970 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
45
46
{
"name": "koa-xml-body",
"version": "3.0.0",
"description": "koa middleware to parse xml request body",
"main": "lib/index.js",
"scripts": {
"lint": "eslint lib/ test/",
"test": "mocha --exit test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/creeperyang/koa-xml-body.git"
},
"keywords": [
"xml",
"body",
"bodyParser",
"koa",
"middleware",
"xml2js",
"xml parser"
],
"author": "creeperyang",
"license": "MIT",
"bugs": {
"url": "https://github.com/creeperyang/koa-xml-body/issues"
},
"homepage": "https://github.com/creeperyang/koa-xml-body#readme",
"dependencies": {
"raw-body": "^2.5.2",
"xml2js": "^0.6.0"
},
"devDependencies": {
"eslint": "^8.42.0",
"iconv-lite": "^0.6.3",
"mocha": "^10.2.0",
"should": "^13.2.3",
"supertest": "^6.3.3"
},
"peerDependencies": {
"koa": "^2"
},
"engines": {
"node": ">= 14.0"
}
}