package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "formstream",
  3. "version": "1.1.1",
  4. "description": "A multipart/form-data encoded stream, helper for file upload.",
  5. "main": "lib/formstream.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "test": "mocha -R spec -t 5000 -r should test/*.test.js",
  11. "test-cov": "istanbul cover node_modules/.bin/_mocha -- -t 5000 -r should test/*.test.js",
  12. "test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- -t 5000 -r should test/*.test.js",
  13. "jshint": "jshint .",
  14. "autod": "autod -w --prefix '^'"
  15. },
  16. "repository": {
  17. "type": "git",
  18. "url": "git://github.com/node-modules/formstream.git"
  19. },
  20. "keywords": [
  21. "form",
  22. "stream",
  23. "multipart",
  24. "form-data",
  25. "upload",
  26. "postfile",
  27. "request"
  28. ],
  29. "dependencies": {
  30. "destroy": "^1.0.4",
  31. "mime": "^2.5.2",
  32. "pause-stream": "~0.0.11"
  33. },
  34. "devDependencies": {
  35. "autod": "*",
  36. "connect-multiparty": "1",
  37. "express": "^4.16.4",
  38. "istanbul": "*",
  39. "mocha": "3",
  40. "pedding": "1",
  41. "should": "4",
  42. "urllib": "2"
  43. },
  44. "author": "fengmk2 <fengmk2@gmail.com> (https://fengmk2.com)",
  45. "license": "MIT"
  46. }