-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
41 lines (41 loc) · 956 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
{
"name": "body-parser-xml",
"version": "2.0.5",
"description": "XML parser middleware for express.js.",
"main": "index.js",
"scripts": {
"lint": "eslint \"**/*.js\" --fix",
"prettier": "prettier --write .",
"test": "prettier --check . && mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fiznool/body-parser-xml.git"
},
"keywords": [
"express",
"xml",
"middleware",
"body-parser"
],
"author": "Tom Spencer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/fiznool/body-parser-xml/issues"
},
"homepage": "https://github.com/fiznool/body-parser-xml#readme",
"dependencies": {
"xml2js": "^0.5.0"
},
"devDependencies": {
"body-parser": "^1.20.2",
"eslint": "^8.38.0",
"express": "^4.18.2",
"mocha": "^8.4.0",
"prettier": "^2.8.7",
"supertest": "^6.3.3"
},
"engines": {
"node": ">=10"
}
}