package.json 970 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "get-ready",
  3. "version": "2.0.1",
  4. "description": "mixin to add one-time ready event callback handler",
  5. "main": "index.js",
  6. "files": [
  7. "index.js"
  8. ],
  9. "dependencies": {
  10. "is-type-of": "^1.0.0"
  11. },
  12. "engines": {
  13. "node": ">= 4.0.0"
  14. },
  15. "devDependencies": {
  16. "autod": "^2.7.1",
  17. "egg": "^0.11.0",
  18. "egg-bin": "^2.0.2",
  19. "egg-ci": "^1.1.0",
  20. "eslint": "^3.15.0",
  21. "eslint-config-egg": "^3.2.0"
  22. },
  23. "scripts": {
  24. "autod": "autod",
  25. "lint": "eslint .",
  26. "test": "npm run lint && egg-bin test",
  27. "cov": "egg-bin cov",
  28. "ci": "npm run lint && npm run cov"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "git://github.com/node-modules/ready"
  33. },
  34. "keywords": [
  35. "ready",
  36. "once",
  37. "event"
  38. ],
  39. "author": "fengmk2 <m@fengmk2.com> (http://fengmk2.com)",
  40. "license": "MIT",
  41. "bugs": {
  42. "url": "https://github.com/node-modules/ready/issues"
  43. },
  44. "ci": {
  45. "version": "4, 6, 7"
  46. }
  47. }