-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.07 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
{
"name": "anuvadak",
"version": "2.1.3",
"description": "Add basic serialization and body barsing methods to Muneem framework",
"main": "src/anuvadak.js",
"scripts": {
"test": "jasmine tests/*test.js",
"coverage": "nyc jasmine tests/*test.js; nyc report --reporter=lcov"
},
"keywords": [
"muneem",
"buffer",
"stream",
"text",
"serializer",
"anuvadak",
"xml",
"json",
"form",
"multipart",
"url-encoded",
"content",
"file"
],
"author": "Amit Kumar Gupta (http://amitkumargupta.work)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/node-muneem/anuvadak"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-http": "^4.2.1",
"jasmine": "^3.3.1",
"mock-req": "^0.2.0",
"mock-res": "^0.5.0",
"muneem": "^2.4.4",
"nyc": "^12.0.2"
},
"dependencies": {
"fast-xml-parser": "^3.12.12",
"formidable": "^1.2.1",
"pump": "^3.0.0",
"qs": "^6.6.0",
"send": "^0.16.2"
},
"nyc": {
"exclude": [
"tests",
"build"
]
}
}