package.json 961 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "co-busboy",
  3. "description": "Busboy multipart parser as a yieldable",
  4. "version": "1.5.0",
  5. "author": {
  6. "name": "Jonathan Ong",
  7. "email": "me@jongleberry.com",
  8. "url": "http://jongleberry.com",
  9. "twitter": "https://twitter.com/jongleberry"
  10. },
  11. "license": "MIT",
  12. "repository": {
  13. "type": "git",
  14. "url": "https://github.com/cojs/co-busboy.git"
  15. },
  16. "bugs": {
  17. "mail": "me@jongleberry.com",
  18. "url": "https://github.com/cojs/co-busboy/issues"
  19. },
  20. "dependencies": {
  21. "black-hole-stream": "~0.0.1",
  22. "busboy": "^0.2.8",
  23. "chan": "^0.6.1",
  24. "inflation": "^2.0.0"
  25. },
  26. "devDependencies": {
  27. "co": "^4.6.0",
  28. "formstream": "~1.0.0",
  29. "istanbul": "^0.4.5",
  30. "mocha": "^4.0.1"
  31. },
  32. "scripts": {
  33. "test": "NODE_ENV=test mocha --harmony --reporter spec --bail",
  34. "test-cov": "NODE_ENV=test istanbul cover -x test.js _mocha -- --reporter spec --bail"
  35. },
  36. "files": [
  37. "index.js"
  38. ]
  39. }