You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.3 KiB
51 lines
1.3 KiB
6 months ago
|
{
|
||
|
"name": "multiparty",
|
||
|
"description": "multipart/form-data parser which supports streaming",
|
||
|
"version": "4.2.1",
|
||
|
"author": "Andrew Kelley <superjoe30@gmail.com>",
|
||
|
"contributors": [
|
||
|
"Douglas Christopher Wilson <doug@somethingdoug.com>",
|
||
|
"Felix Geisendörfer <felix@debuggable.com>"
|
||
|
],
|
||
|
"license": "MIT",
|
||
|
"keywords": [
|
||
|
"file",
|
||
|
"upload",
|
||
|
"formidable",
|
||
|
"stream",
|
||
|
"s3"
|
||
|
],
|
||
|
"repository": "pillarjs/multiparty",
|
||
|
"dependencies": {
|
||
|
"fd-slicer": "1.1.0",
|
||
|
"http-errors": "~1.7.0",
|
||
|
"safe-buffer": "5.1.2",
|
||
|
"uid-safe": "2.1.5"
|
||
|
},
|
||
|
"devDependencies": {
|
||
|
"eslint": "2.13.1",
|
||
|
"istanbul": "0.4.5",
|
||
|
"mkdirp": "0.5.1",
|
||
|
"mocha": "3.5.3",
|
||
|
"pend": "1.2.0",
|
||
|
"require-all": "3.0.0",
|
||
|
"rimraf": "2.5.4",
|
||
|
"superagent": "1.8.5"
|
||
|
},
|
||
|
"files": [
|
||
|
"CHANGELOG.md",
|
||
|
"LICENSE",
|
||
|
"README.md",
|
||
|
"index.js"
|
||
|
],
|
||
|
"engines": {
|
||
|
"node": ">= 0.10"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"lint": "eslint .",
|
||
|
"test": "mocha --reporter spec --bail --check-leaks --no-exit test/",
|
||
|
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks --no-exit test/",
|
||
|
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks --no-exit test/"
|
||
|
}
|
||
|
}
|