package.json 960 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "name": "eslint-plugin-eggache",
  3. "version": "1.0.0",
  4. "description": "custom eslint rule for egg RTFM issues",
  5. "dependencies": {
  6. },
  7. "devDependencies": {
  8. "autod": "^3.0.1",
  9. "egg-bin": "^4.3.7",
  10. "egg-ci": "^1.8.0",
  11. "eslint": "^4.17.0",
  12. "eslint-config-egg": "^6.0.0",
  13. "is-type-of": "^1.2.0",
  14. "webstorm-disable-index": "^1.2.0"
  15. },
  16. "engines": {
  17. "node": ">=6.0.0"
  18. },
  19. "scripts": {
  20. "autod": "autod",
  21. "lint": "eslint .",
  22. "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
  23. "test-local": "egg-bin test",
  24. "cov": "egg-bin cov",
  25. "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
  26. "pkgfiles": "egg-bin pkgfiles"
  27. },
  28. "ci": {
  29. "version": "6, 8"
  30. },
  31. "repository": {
  32. "type": "git",
  33. "url": "git@github.com:eggjs/eslint-plugin-eggache.git"
  34. },
  35. "files": [
  36. "index.js",
  37. "lib"
  38. ],
  39. "author": "TZ <atian25@qq.com>",
  40. "license": "MIT"
  41. }