package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233343536
  1. {
  2. "name": "fd-slicer",
  3. "version": "1.1.0",
  4. "description": "safely create multiple ReadStream or WriteStream objects from the same file descriptor",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "mocha --reporter spec --check-leaks",
  8. "test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot --check-leaks test/test.js",
  9. "test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --timeout 10000 --reporter spec --check-leaks test/test.js"
  10. },
  11. "author": "Andrew Kelley <superjoe30@gmail.com>",
  12. "license": "MIT",
  13. "devDependencies": {
  14. "istanbul": "~0.3.3",
  15. "mocha": "~2.0.1",
  16. "stream-equal": "~0.1.5",
  17. "streamsink": "~1.2.0"
  18. },
  19. "dependencies": {
  20. "pend": "~1.2.0"
  21. },
  22. "directories": {
  23. "test": "test"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "git://github.com/andrewrk/node-fd-slicer.git"
  28. },
  29. "bugs": {
  30. "url": "https://github.com/andrewrk/node-fd-slicer/issues"
  31. },
  32. "keywords": [
  33. "createReadStream",
  34. "createWriteStream"
  35. ]
  36. }