-
-
Notifications
You must be signed in to change notification settings - Fork 52
/
package.json
42 lines (42 loc) · 1009 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
42
{
"name": "connect-multiparty",
"version": "2.2.0",
"description": "multipart parsing middleware for connect using multiparty",
"author": "Andrew Kelley <superjoe30@gmail.com>",
"contributors": [
"Douglas Christopher Wilson <doug@somethingdoug.com>"
],
"license": "MIT",
"repository": "expressjs/connect-multiparty",
"dependencies": {
"http-errors": "~1.7.3",
"multiparty": "~4.2.1",
"on-finished": "~2.3.0",
"qs": "~6.7.0",
"type-is": "~1.6.18"
},
"engines": {
"node": ">=0.10.0"
},
"devDependencies": {
"connect": "3.7.0",
"deep-equal": "1.0.1",
"eslint": "6.5.1",
"mocha": "6.2.1",
"nyc": "14.1.1",
"safe-buffer": "5.2.0",
"supertest": "4.0.2"
},
"files": [
"HISTORY.md",
"LICENSE",
"README.md",
"index.js"
],
"scripts": {
"lint": "eslint .",
"test": "mocha --reporter spec",
"test-ci": "nyc --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
}