package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. {
  2. "name": "egg-sequelize",
  3. "version": "5.2.2",
  4. "description": "egg Sequelize plugin",
  5. "eggPlugin": {
  6. "name": "sequelize"
  7. },
  8. "keywords": [
  9. "egg",
  10. "sequelize",
  11. "egg-plugin",
  12. "eggPlugin",
  13. "orm"
  14. ],
  15. "dependencies": {
  16. "@types/sequelize": "^4.27.24",
  17. "mz-modules": "^2.1.0",
  18. "sequelize": "^5.0.0"
  19. },
  20. "devDependencies": {
  21. "autod": "^3.0.1",
  22. "egg": "^2.10.0",
  23. "egg-bin": "^4.13.1",
  24. "egg-mock": "^3.19.3",
  25. "eslint": "^5.3.0",
  26. "eslint-config-egg": "^7.0.0",
  27. "mysql2": "^1.6.1"
  28. },
  29. "engines": {
  30. "node": ">=6.0.0"
  31. },
  32. "scripts": {
  33. "test": "npm run lint -- --fix && npm run test-local",
  34. "test-local": "egg-bin test",
  35. "cov": "egg-bin cov",
  36. "lint": "eslint .",
  37. "ci": "npm run lint && npm run cov",
  38. "autod": "autod"
  39. },
  40. "files": [
  41. "app",
  42. "config",
  43. "agent.js",
  44. "lib",
  45. "app.js",
  46. "index.d.ts"
  47. ],
  48. "repository": {
  49. "type": "git",
  50. "url": "git+https://github.com/eggjs/egg-sequelize.git"
  51. },
  52. "bugs": {
  53. "url": "https://github.com/eggjs/egg/issues"
  54. },
  55. "homepage": "https://github.com/eggjs/egg-sequelize#readme",
  56. "author": "jtyjty99999",
  57. "license": "MIT"
  58. }