설명 없음

package.json 1.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. {
  2. "name": "concat-stream",
  3. "version": "1.6.0",
  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. "inherits": "^2.0.3",
  32. "typedarray": "^0.0.6",
  33. "readable-stream": "^2.2.2"
  34. },
  35. "devDependencies": {
  36. "tape": "^4.6.3"
  37. },
  38. "testling": {
  39. "files": "test/*.js",
  40. "browsers": [
  41. "ie/8..latest",
  42. "firefox/17..latest",
  43. "firefox/nightly",
  44. "chrome/22..latest",
  45. "chrome/canary",
  46. "opera/12..latest",
  47. "opera/next",
  48. "safari/5.1..latest",
  49. "ipad/6.0..latest",
  50. "iphone/6.0..latest",
  51. "android-browser/4.2..latest"
  52. ]
  53. }
  54. }