package.json 589 B

123456789101112131415161718192021
  1. {
  2. "name": "exit-on-epipe",
  3. "version": "1.0.1",
  4. "author": "sheetjs",
  5. "description": "Cleanly exit process on EPIPE",
  6. "keywords": [ "epipe", "pipe", "error", "exit" ],
  7. "main": "./exit-on-epipe",
  8. "dependencies": {
  9. },
  10. "devDependencies": {
  11. "mocha":"~2.5.3"
  12. },
  13. "repository": { "type":"git", "url":"git://github.com/SheetJS/node-exit-on-epipe.git" },
  14. "scripts": {
  15. "test": "make test"
  16. },
  17. "files": ["exit-on-epipe.js", "LICENSE", "README.md"],
  18. "bugs": { "url": "https://github.com/SheetJS/node-exit-on-epipe/issues" },
  19. "license": "Apache-2.0",
  20. "engines": { "node": ">=0.8" }
  21. }