package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "concat-stream",
  3. "version": "1.6.2",
  4. "description": "writable stream that concatenates strings or binary data and calls a callback with the result",
  5. "tags": [
  6. "stream",
  7. "simple",
  8. "util",
  9. "utility"
  10. ],
  11. "author": "Max Ogden <max@maxogden.com>",
  12. "repository": {
  13. "type": "git",
  14. "url": "http://github.com/maxogden/concat-stream.git"
  15. },
  16. "bugs": {
  17. "url": "http://github.com/maxogden/concat-stream/issues"
  18. },
  19. "engines": [
  20. "node >= 0.8"
  21. ],
  22. "main": "index.js",
  23. "files": [
  24. "index.js"
  25. ],
  26. "scripts": {
  27. "test": "tape test/*.js test/server/*.js"
  28. },
  29. "license": "MIT",
  30. "dependencies": {
  31. "buffer-from": "^1.0.0",
  32. "inherits": "^2.0.3",
  33. "readable-stream": "^2.2.2",
  34. "typedarray": "^0.0.6"
  35. },
  36. "devDependencies": {
  37. "tape": "^4.6.3"
  38. },
  39. "testling": {
  40. "files": "test/*.js",
  41. "browsers": [
  42. "ie/8..latest",
  43. "firefox/17..latest",
  44. "firefox/nightly",
  45. "chrome/22..latest",
  46. "chrome/canary",
  47. "opera/12..latest",
  48. "opera/next",
  49. "safari/5.1..latest",
  50. "ipad/6.0..latest",
  51. "iphone/6.0..latest",
  52. "android-browser/4.2..latest"
  53. ]
  54. }
  55. }