package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "graceful-process",
  3. "version": "1.2.0",
  4. "description": "graceful exit process even parent exit on SIGKILL.",
  5. "files": [
  6. "index.js",
  7. "exit.js"
  8. ],
  9. "scripts": {
  10. "lint": "eslint *.js test",
  11. "test": "npm run lint && npm run test-local",
  12. "test-local": "egg-bin test",
  13. "cov": "cross-env COV=true egg-bin cov",
  14. "autod": "autod",
  15. "pkgfiles": "egg-bin pkgfiles",
  16. "ci": "npm run lint && npm run cov"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "git@github.com:node-modules/graceful-process.git"
  21. },
  22. "bug": {
  23. "url": "https://github.com/node-modules/graceful-process/issues"
  24. },
  25. "author": "fengmk2",
  26. "license": "MIT",
  27. "dependencies": {
  28. "is-type-of": "^1.2.0",
  29. "once": "^1.4.0"
  30. },
  31. "devDependencies": {
  32. "autod": "^3.0.1",
  33. "coffee": "^4.1.0",
  34. "cross-env": "^5.0.1",
  35. "egg-bin": "^4.3.7",
  36. "egg-ci": "^1.8.0",
  37. "eslint": "^4.18.1",
  38. "eslint-config-egg": "^7.0.0",
  39. "mm": "^2.2.0",
  40. "mz-modules": "^2.1.0",
  41. "urllib": "^2.26.0"
  42. },
  43. "ci": {
  44. "version": "6, 8, 9"
  45. }
  46. }