12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "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"
- }
|