-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 769 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 769 Bytes
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
{
"name": "multiparse",
"version": "0.1.0",
"license": "Apache-2.0",
"description": "A recursive stream parser for multipart HTTP messages",
"keywords": ["multipart", "form-data", "formdata", "dicer", "multiparty", "http", "parser"],
"readme": "README.md",
"author": {
"name": "Tom De Caluwé",
"email": "decaluwe.t@gmail.com"
},
"main": "multiparser.js",
"engines": {
"node": ">=4.0"
},
"scripts": {
"test": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/tdecaluwe/multipart.git"
},
"dependencies": {
"content-type": "^1.0"
},
"devDependencies": {
"chai": "^3.5",
"sinon": "^1.17",
"sinon-chai": "^2.8",
"mocha": "^3.0",
"istanbul": "^0.4"
}
}