-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
58 lines (58 loc) · 1.51 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
{
"name": "express-xml-bodyparser",
"version": "0.3.0",
"description": "Simple XML body parser connect/express middleware",
"author": "Matthias Adler <[email protected]> (http://matthiasadler.info/)",
"contributors": [
"asperling (https://github.com/asperling)",
"Pavel Strashkin (https://github.com/xaka)",
"ophentis (https://github.com/ophentis)",
"fiznool (https://github.com/fiznool)",
"dirksen (https://github.com/dirksen)"
],
"homepage": "https://github.com/macedigital/express-xml-bodyparser",
"main": "./index.js",
"scripts": {
"test": "mocha 2> /dev/null",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot 2> /dev/null",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- 2> /dev/null"
},
"repository": {
"type": "git",
"url": "[email protected]:macedigital/express-xml-bodyparser.git"
},
"keywords": [
"xml",
"json",
"middleware",
"parser",
"express"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/macedigital/express-xml-bodyparser/issues"
},
"dependencies": {
"xml2js": "^0.4.19"
},
"devDependencies": {
"@types/express-xml-bodyparser": "^0.3.0",
"express": "^4.16.3",
"istanbul": "^0.4.5",
"mocha": "^5.0.5",
"supertest": "^3.0.0"
},
"engines": {
"node": ">=0.10"
},
"directories": {
"test": "test"
},
"files": [
"LICENSE",
"README.md",
"index.js",
"lib/"
],
"readmeFilename": "README.md"
}