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.
46 lines
1.1 KiB
46 lines
1.1 KiB
{
|
|
"name": "formstream",
|
|
"version": "1.1.1",
|
|
"description": "A multipart/form-data encoded stream, helper for file upload.",
|
|
"main": "lib/formstream.js",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"scripts": {
|
|
"test": "mocha -R spec -t 5000 -r should test/*.test.js",
|
|
"test-cov": "istanbul cover node_modules/.bin/_mocha -- -t 5000 -r should test/*.test.js",
|
|
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 5000 -r should test/*.test.js",
|
|
"jshint": "jshint .",
|
|
"autod": "autod -w --prefix '^'"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/node-modules/formstream.git"
|
|
},
|
|
"keywords": [
|
|
"form",
|
|
"stream",
|
|
"multipart",
|
|
"form-data",
|
|
"upload",
|
|
"postfile",
|
|
"request"
|
|
],
|
|
"dependencies": {
|
|
"destroy": "^1.0.4",
|
|
"mime": "^2.5.2",
|
|
"pause-stream": "~0.0.11"
|
|
},
|
|
"devDependencies": {
|
|
"autod": "*",
|
|
"connect-multiparty": "1",
|
|
"express": "^4.16.4",
|
|
"istanbul": "*",
|
|
"mocha": "3",
|
|
"pedding": "1",
|
|
"should": "4",
|
|
"urllib": "2"
|
|
},
|
|
"author": "fengmk2 <fengmk2@gmail.com> (https://fengmk2.com)",
|
|
"license": "MIT"
|
|
}
|
|
|