1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- {
- "name": "graceful",
- "version": "1.0.2",
- "description": "Graceful exit when `uncaughtException` emit, base on `process.on('uncaughtException')`.",
- "main": "index.js",
- "files": [
- "index.js"
- ],
- "scripts": {
- "test": "mocha -R spec -t 5000 test/*.test.js",
- "test-cov": "istanbul cover _mocha -- -t 5000 test/*.test.js",
- "lint": "jshint .",
- "autod": "autod -w --prefix '^'"
- },
- "dependencies": {
- "humanize-ms": "^1.2.1",
- "ps-tree": "^1.1.0"
- },
- "devDependencies": {
- "autod": "*",
- "contributors": "^0.5.1",
- "express": "^4.16.4",
- "istanbul": "^0.4.5",
- "jshint": "2",
- "mocha": "^3.5.3",
- "supertest": "^1.2.0"
- },
- "homepage": "https://github.com/node-modules/graceful",
- "repository": {
- "type": "git",
- "url": "git://github.com/node-modules/graceful.git"
- },
- "keywords": [
- "graceful",
- "uncaught",
- "uncaughtException",
- "error",
- "graceful",
- "cluster",
- "graceful exit"
- ],
- "engines": {
- "node": ">= 0.10.0"
- },
- "author": "fengmk2 <fengmk2@gmail.com>",
- "license": "MIT"
- }
|