package.json 794 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
{
  "name": "capture-exit",
  "version": "2.0.0",
  "description": "safely cleanup in signal handlers",
  "main": "index.js",
  "scripts": {
    "test": "mocha test",
    "test:debug": "mocha debug test"
  },
  "files": [
    "index.js"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/stefanpenner/capture-exit.git"
  },
  "author": "Stefan Penner <stefan.penner@gmail.com>",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/stefanpenner/capture-exit/issues"
  },
  "homepage": "https://github.com/stefanpenner/capture-exit#readme",
  "devDependencies": {
    "chai": "^4.2.0",
    "execa": "1.0.0",
    "mocha": "^5.2.0",
    "ora": "^3.0.0"
  },
  "dependencies": {
    "rsvp": "^4.8.4"
  },
  "engines": {
    "node": "6.* || 8.* || >= 10.*"
  }
}