package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "tcp-proxy.js",
  3. "version": "1.3.0",
  4. "description": "simple tcp proxy",
  5. "dependencies": {
  6. "debug": "^3.0.1",
  7. "through2": "^2.0.3"
  8. },
  9. "devDependencies": {
  10. "autod": "^2.8.0",
  11. "co": "^4.6.0",
  12. "egg-bin": "^3.4.0",
  13. "egg-ci": "^1.7.0",
  14. "eslint": "^4.0.0",
  15. "eslint-config-egg": "^4.2.0",
  16. "urllib": "^2.24.0",
  17. "webstorm-disable-index": "^1.2.0"
  18. },
  19. "engines": {
  20. "node": ">=6.0.0"
  21. },
  22. "scripts": {
  23. "autod": "autod",
  24. "lint": "eslint .",
  25. "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
  26. "test-local": "egg-bin test",
  27. "cov": "egg-bin cov",
  28. "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
  29. "pkgfiles": "egg-bin pkgfiles"
  30. },
  31. "ci": {
  32. "version": "6, 8"
  33. },
  34. "repository": {
  35. "type": "git",
  36. "url": "git+https://github.com/whxaxes/tcp-proxy.js.git"
  37. },
  38. "bugs": {
  39. "url": "https://github.com/whxaxes/tcp-proxy.js/issues"
  40. },
  41. "homepage": "https://github.com/whxaxes/tcp-proxy.js#readme",
  42. "publishConfig": {
  43. "registry": "https://registry.npmjs.org/"
  44. },
  45. "files": [
  46. "index.js"
  47. ],
  48. "author": "wanghx",
  49. "license": "MIT",
  50. "main": "index.js",
  51. "keywords": [
  52. "tcp",
  53. "proxy"
  54. ]
  55. }