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