package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "ready-callback",
  3. "version": "2.1.0",
  4. "description": "Launch server after all async task ready",
  5. "keywords": [
  6. "koa",
  7. "ready",
  8. "async"
  9. ],
  10. "main": "lib/ready.js",
  11. "files": [
  12. "index.js",
  13. "lib"
  14. ],
  15. "dependencies": {
  16. "debug": "^2.6.0",
  17. "get-ready": "^2.0.0",
  18. "once": "^1.4.0",
  19. "uuid": "^3.0.1"
  20. },
  21. "devDependencies": {
  22. "autod": "^2.7.1",
  23. "egg-bin": "^1.11.1",
  24. "egg-ci": "^1.1.0",
  25. "eslint": "^3.15.0",
  26. "eslint-config-egg": "^3.2.0",
  27. "koa": "^1.2.4",
  28. "mz-modules": "^2.1.0",
  29. "spy": "^1.0.0"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "https://github.com/node-modules/ready-callback"
  34. },
  35. "homepage": "https://github.com/node-modules/ready-callback",
  36. "author": "popomore <sakura9515@gmail.com>",
  37. "license": "MIT",
  38. "scripts": {
  39. "autod": "autod",
  40. "lint": "eslint .",
  41. "test": "npm run lint -- --fix && egg-bin test",
  42. "cov": "egg-bin cov",
  43. "ci": "npm run lint && egg-bin cov"
  44. },
  45. "engines": {
  46. "node": ">=4.0.0"
  47. },
  48. "ci": {
  49. "version": "4, 6, 7"
  50. }
  51. }