package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "tcp-base",
  3. "version": "3.1.1",
  4. "description": "A base class for tcp client with basic functions",
  5. "main": "lib/base.js",
  6. "files": [
  7. "lib"
  8. ],
  9. "scripts": {
  10. "lint": "eslint --ext .js .",
  11. "test": "npm run lint && npm run test-local",
  12. "test-local": "egg-bin test",
  13. "cov": "egg-bin cov",
  14. "ci": "npm run lint && npm run cov",
  15. "contributors": "contributors"
  16. },
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/node-modules/tcp-base.git"
  20. },
  21. "keywords": [
  22. "tcp"
  23. ],
  24. "author": "gxcsoccer <gxcsoccer@126.com>",
  25. "license": "MIT",
  26. "bugs": {
  27. "url": "https://github.com/node-modules/tcp-base/issues"
  28. },
  29. "homepage": "https://github.com/node-modules/tcp-base#readme",
  30. "engines": {
  31. "node": ">= 6.0.0"
  32. },
  33. "ci": {
  34. "version": "14, 16, 18",
  35. "os": "linux"
  36. },
  37. "devDependencies": {
  38. "contributors": "^0.5.1",
  39. "egg-bin": "^5.2.0",
  40. "egg-ci": "^2.1.0",
  41. "eslint": "^8.23.0",
  42. "eslint-config-egg": "^12.0.0",
  43. "mm": "^2.1.0",
  44. "mz-modules": "^1.0.0",
  45. "pedding": "^1.1.0"
  46. },
  47. "dependencies": {
  48. "is-type-of": "^1.0.0",
  49. "sdk-base": "^3.1.1"
  50. }
  51. }