-
Notifications
You must be signed in to change notification settings - Fork 165
/
package.json
49 lines (49 loc) · 1.12 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
{
"name": "multiparty",
"description": "multipart/form-data parser which supports streaming",
"version": "4.2.3",
"author": "Andrew Kelley <[email protected]>",
"contributors": [
"Douglas Christopher Wilson <[email protected]>",
"Felix Geisendörfer <[email protected]>"
],
"license": "MIT",
"keywords": [
"file",
"upload",
"formidable",
"stream",
"s3"
],
"repository": "pillarjs/multiparty",
"dependencies": {
"http-errors": "2.0.0",
"safe-buffer": "5.2.1",
"uid-safe": "2.1.5"
},
"devDependencies": {
"eslint": "8.42.0",
"eslint-plugin-markdown": "3.0.0",
"mocha": "10.2.0",
"nyc": "15.1.0",
"pend": "1.2.0",
"require-all": "3.0.0",
"rimraf": "2.6.3",
"superagent": "3.8.3"
},
"files": [
"HISTORY.md",
"LICENSE",
"README.md",
"index.js"
],
"engines": {
"node": ">= 0.10"
},
"scripts": {
"lint": "eslint .",
"test": "mocha --reporter spec --bail --check-leaks test/",
"test-ci": "nyc --reporter=lcov --reporter=text npm test",
"test-cov": "nyc --reporter=html --reporter=text npm test"
}
}