package.json 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "cfork",
  3. "version": "1.8.0",
  4. "description": "cluster fork and restart easy way",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "scripts": {
  10. "cover": "node --harmony node_modules/.bin/istanbul cover --include-all-sources --report none --print none node_modules/.bin/_mocha -- -t 15000 test/*.test.js",
  11. "lint": "eslint index.js test",
  12. "test": "npm run clean && npm run lint && npm run cover && istanbul report json lcov html text",
  13. "clean": "rm -rf coverage",
  14. "ci": "mocha -t 15000 test/*.test.js"
  15. },
  16. "dependencies": {
  17. "utility": "^1.12.0"
  18. },
  19. "devDependencies": {
  20. "childprocess": "1",
  21. "contributors": "*",
  22. "eslint": "3.12.0",
  23. "graceful": "1",
  24. "istanbul": "^0.4.0",
  25. "mocha": "2",
  26. "pedding": "1",
  27. "should": "11.1.2",
  28. "urllib": "2"
  29. },
  30. "homepage": "https://github.com/node-modules/cfork",
  31. "repository": {
  32. "type": "git",
  33. "url": "git://github.com/node-modules/cfork.git",
  34. "web": "https://github.com/node-modules/cfork"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/node-modules/cfork/issues",
  38. "email": "fengmk2@gmail.com"
  39. },
  40. "keywords": [
  41. "cluster",
  42. "cluster-fork",
  43. "cfork",
  44. "restart"
  45. ],
  46. "engines": {
  47. "node": ">= 0.12.0"
  48. },
  49. "author": "fengmk2 <fengmk2@gmail.com> (http://fengmk2.com)",
  50. "license": "MIT"
  51. }