-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 869 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
{
"name": "body-parser-xml-json",
"version": "1.0.0",
"description": "XML to JSON parser middleware for express.js using xml-js",
"main": "index.js",
"scripts": {
"test": "node_modules/mocha/bin/mocha test.js "
},
"repository": {
"type": "git",
"url": "git+https://github.com/udithv/body-parser-xml-json.git"
},
"keywords": [
"express",
"xml",
"middleware",
"body-parser",
"xml2json"
],
"author": "UdithVic",
"license": "MIT",
"bugs": {
"url": "https://github.com/udithv/body-parser-xml-json/issues"
},
"homepage": "https://github.com/udithv/body-parser-xml-json#readme",
"dependencies": {
"extend": "^3.0.2",
"xml-js": "^1.6.2",
"xml2js": "^0.4.19"
},
"devDependencies": {
"body-parser": "^1.18.2",
"express": "^4.16.3",
"mocha": "^5.0.5",
"supertest": "^3.0.0"
}
}