package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "sdk-base",
  3. "version": "3.6.0",
  4. "description": "a base class for sdk with default error handler",
  5. "main": "index.js",
  6. "scripts": {
  7. "lint": "eslint --ext .js .",
  8. "test": "npm run lint && npm run test-local",
  9. "test-local": "egg-bin test",
  10. "cov": "egg-bin cov",
  11. "ci": "npm run autod -- --check && npm run pkgfiles && npm run lint && npm run cov",
  12. "autod": "autod",
  13. "pkgfiles": "egg-bin pkgfiles --check"
  14. },
  15. "keywords": [
  16. "sdk",
  17. "error"
  18. ],
  19. "files": [
  20. "index.js",
  21. "index.d.ts"
  22. ],
  23. "author": {
  24. "name": "dead_horse",
  25. "email": "dead_horse@qq.com",
  26. "url": "http://deadhorse.me"
  27. },
  28. "repository": {
  29. "type": "git",
  30. "url": "git@github.com:node-modules/sdk-base"
  31. },
  32. "license": "MIT",
  33. "dependencies": {
  34. "await-event": "^2.1.0",
  35. "await-first": "^1.0.0",
  36. "co": "^4.6.0",
  37. "is-type-of": "^1.2.1"
  38. },
  39. "devDependencies": {
  40. "@types/node": "^10.5.3",
  41. "autod": "^3.1.0",
  42. "egg-bin": "^4.12.3",
  43. "egg-ci": "^1.11.0",
  44. "eslint": "^5.16.0",
  45. "eslint-config-egg": "^7.3.1",
  46. "pedding": "^1.1.0",
  47. "runscript": "^1.3.0",
  48. "typescript": "^3.4.3"
  49. },
  50. "engine": {
  51. "node": ">= 6.0.0"
  52. },
  53. "ci": {
  54. "version": "6, 8, 10, 11"
  55. }
  56. }