package.json 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. {
  2. "name": "egg-ts-helper",
  3. "version": "1.33.0",
  4. "description": "egg typescript helper",
  5. "bin": {
  6. "ets": "dist/bin.js"
  7. },
  8. "main": "dist/index.js",
  9. "types": "dist/index.d.ts",
  10. "repository": {
  11. "type": "git",
  12. "url": "git@github.com:whxaxes/egg-ts-helper.git"
  13. },
  14. "scripts": {
  15. "build": "tsc -d",
  16. "build:w": "tsc -d -w",
  17. "release": "del dist && npm run build",
  18. "lint": "eslint . --ext .ts",
  19. "check": "npm run build && npm run lint",
  20. "test": "npm run check && npm run test-local",
  21. "test-local": "egg-bin test --ts",
  22. "prepublish": "npm run release",
  23. "cov": "egg-bin cov --ts",
  24. "ci": "npm run check && npm run cov"
  25. },
  26. "keywords": [
  27. "egg",
  28. "typescript"
  29. ],
  30. "files": [
  31. "dist",
  32. "register.js"
  33. ],
  34. "author": "wanghx",
  35. "license": "MIT",
  36. "dependencies": {
  37. "cache-require-paths": "^0.3.0",
  38. "chalk": "^2.4.2",
  39. "chokidar": "^3.0.0",
  40. "commander": "^2.15.1",
  41. "debug": "^3.1.0",
  42. "dot-prop": "^4.2.0",
  43. "enquirer": "^2.3.0",
  44. "globby": "^11.0.0",
  45. "json5": "^2.2.0",
  46. "mkdirp": "^0.5.1",
  47. "ts-node": "^7.0.0",
  48. "tslib": "^2.0.0",
  49. "typescript": "^4.0.0",
  50. "yn": "^3.0.0"
  51. },
  52. "publishConfig": {
  53. "registry": "https://registry.npmjs.org/"
  54. },
  55. "devDependencies": {
  56. "@eggjs/tsconfig": "^1.0.0",
  57. "@types/commander": "^2.12.2",
  58. "@types/debug": "^0.0.30",
  59. "@types/del": "^3.0.0",
  60. "@types/globby": "^6.1.0",
  61. "@types/mkdirp": "^0.5.2",
  62. "@types/mocha": "^5.0.0",
  63. "@types/node": "^9.4.5",
  64. "@types/power-assert": "^1.4.29",
  65. "del": "^3.0.0",
  66. "del-cli": "^1.1.0",
  67. "egg": "^2.10.0",
  68. "egg-bin": "^4.3.7",
  69. "egg-mock": "^3.21.0",
  70. "egg-sequelize": "^4.3.1",
  71. "eslint": "^8.0.0",
  72. "eslint-config-egg": "^11.0.0",
  73. "extend2": "^1.0.0",
  74. "runscript": "^1.3.0"
  75. }
  76. }