package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "graceful",
  3. "version": "1.0.2",
  4. "description": "Graceful exit when `uncaughtException` emit, base on `process.on('uncaughtException')`.",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "test": "mocha -R spec -t 5000 test/*.test.js",
  11. "test-cov": "istanbul cover _mocha -- -t 5000 test/*.test.js",
  12. "lint": "jshint .",
  13. "autod": "autod -w --prefix '^'"
  14. },
  15. "dependencies": {
  16. "humanize-ms": "^1.2.1",
  17. "ps-tree": "^1.1.0"
  18. },
  19. "devDependencies": {
  20. "autod": "*",
  21. "contributors": "^0.5.1",
  22. "express": "^4.16.4",
  23. "istanbul": "^0.4.5",
  24. "jshint": "2",
  25. "mocha": "^3.5.3",
  26. "supertest": "^1.2.0"
  27. },
  28. "homepage": "https://github.com/node-modules/graceful",
  29. "repository": {
  30. "type": "git",
  31. "url": "git://github.com/node-modules/graceful.git"
  32. },
  33. "keywords": [
  34. "graceful",
  35. "uncaught",
  36. "uncaughtException",
  37. "error",
  38. "graceful",
  39. "cluster",
  40. "graceful exit"
  41. ],
  42. "engines": {
  43. "node": ">= 0.10.0"
  44. },
  45. "author": "fengmk2 <fengmk2@gmail.com>",
  46. "license": "MIT"
  47. }