package.json 932 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "readable-stream",
  3. "version": "2.0.6",
  4. "description": "Streams3, a user-land copy of the stream library from Node.js",
  5. "main": "readable.js",
  6. "dependencies": {
  7. "core-util-is": "~1.0.0",
  8. "inherits": "~2.0.1",
  9. "isarray": "~1.0.0",
  10. "process-nextick-args": "~1.0.6",
  11. "string_decoder": "~0.10.x",
  12. "util-deprecate": "~1.0.1"
  13. },
  14. "devDependencies": {
  15. "tap": "~0.2.6",
  16. "tape": "~4.5.1",
  17. "zuul": "~3.9.0"
  18. },
  19. "scripts": {
  20. "test": "tap test/parallel/*.js test/ours/*.js",
  21. "browser": "npm run write-zuul && zuul -- test/browser.js",
  22. "write-zuul": "printf \"ui: tape\nbrowsers:\n - name: $BROWSER_NAME\n version: $BROWSER_VERSION\n\">.zuul.yml"
  23. },
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/nodejs/readable-stream"
  27. },
  28. "keywords": [
  29. "readable",
  30. "stream",
  31. "pipe"
  32. ],
  33. "browser": {
  34. "util": false
  35. },
  36. "license": "MIT"
  37. }