package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. {
  2. "name": "egg-errors",
  3. "version": "2.3.1",
  4. "description": "",
  5. "scripts": {
  6. "test": "egg-bin test --typescript",
  7. "cov": "egg-bin cov --typescript",
  8. "tsc": "tsc -p tsconfig.json",
  9. "ci": "npm run lint && npm run cov && npm run tsc",
  10. "autod": "autod",
  11. "prepublishOnly": "npm run tsc",
  12. "lint": "eslint . --ext .ts"
  13. },
  14. "main": "lib/index.js",
  15. "types": "lib/index.d.ts",
  16. "files": [
  17. "lib/**/*.js",
  18. "lib/**/*.d.ts"
  19. ],
  20. "dependencies": {},
  21. "devDependencies": {
  22. "@types/mocha": "^2.2.40",
  23. "@types/node": "^7.0.12",
  24. "autod": "^3.0.1",
  25. "autod-egg": "^1.1.0",
  26. "dedent": "^0.7.0",
  27. "egg-bin": "^4.9.0",
  28. "egg-ci": "^1.8.0",
  29. "egg-mock": "^4.0.1",
  30. "eslint": "^6",
  31. "eslint-config-egg": "^9.0.0",
  32. "statuses": "^1.5.0",
  33. "toidentifier": "^1.0.0",
  34. "typescript": "^3.2.2"
  35. },
  36. "engines": {
  37. "node": ">=8.9.0"
  38. },
  39. "ci": {
  40. "type": "github",
  41. "version": "8, 10, 12, 14, 16",
  42. "license": true
  43. },
  44. "repository": {
  45. "type": "git",
  46. "url": "git@github.com:eggjs/egg-errors.git"
  47. },
  48. "eslintIgnore": [
  49. "coverage"
  50. ],
  51. "author": "popomore",
  52. "license": "MIT"
  53. }