package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "inspector-proxy",
  3. "version": "1.2.2",
  4. "description": "node inspector proxy",
  5. "bin": {
  6. "inspector-proxy": "bin/bin.js"
  7. },
  8. "main": "index.js",
  9. "types": "index.d.ts",
  10. "dependencies": {
  11. "cfork": "^1.6.1",
  12. "debug": "^3.0.1",
  13. "tcp-proxy.js": "^1.0.5",
  14. "urllib": "^2.24.0",
  15. "snyk": "^1.230.5"
  16. },
  17. "devDependencies": {
  18. "autod": "^2.8.0",
  19. "coffee": "^4.1.0",
  20. "cross-spawn": "^5.1.0",
  21. "egg-bin": "^3.4.0",
  22. "egg-ci": "^1.7.0",
  23. "eslint": "^4.0.0",
  24. "eslint-config-egg": "^4.2.0",
  25. "nyc": "^11.2.1",
  26. "webstorm-disable-index": "^1.2.0",
  27. "ws": "^3.1.0"
  28. },
  29. "engines": {
  30. "node": ">=6.0.0"
  31. },
  32. "scripts": {
  33. "autod": "autod",
  34. "lint": "eslint .",
  35. "test": "npm run lint -- --fix && egg-bin pkgfiles && npm run test-local",
  36. "test-local": "egg-bin test",
  37. "cov": "nyc -r json -r lcov -r text-summary npm test",
  38. "ci": "npm run lint && egg-bin pkgfiles --check && npm run cov",
  39. "pkgfiles": "egg-bin pkgfiles"
  40. },
  41. "ci": {
  42. "version": "12, 14"
  43. },
  44. "repository": {
  45. "type": "git",
  46. "url": "git+https://github.com/whxaxes/inspector-proxy.git"
  47. },
  48. "bugs": {
  49. "url": "https://github.com/whxaxes/inspector-proxy/issues"
  50. },
  51. "homepage": "https://github.com/whxaxes/inspector-proxy#readme",
  52. "files": [
  53. "index.js",
  54. "bin",
  55. "index.d.ts"
  56. ],
  57. "author": "wanghx",
  58. "license": "MIT",
  59. "snyk": true
  60. }