package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "localtunnel",
  3. "description": "Expose localhost to the world",
  4. "version": "2.0.2",
  5. "license": "MIT",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/localtunnel/localtunnel.git"
  9. },
  10. "author": "Roman Shtylman <shtylman@gmail.com>",
  11. "contributors": [
  12. "Roman Shtylman <shtylman@gmail.com>",
  13. "Gert Hengeveld <gert@hichroma.com>",
  14. "Tom Coleman <tom@hichroma.com>"
  15. ],
  16. "main": "./localtunnel.js",
  17. "bin": {
  18. "lt": "bin/lt.js"
  19. },
  20. "scripts": {
  21. "test": "mocha --reporter list --timeout 60000 -- *.spec.js",
  22. "start": "DEBUG=tunnel:client TUNNEL_SERVER=https://23909.dev.d8dcloud.com LOCAL_PORT=9000 NODE_ENV=test node server2.js",
  23. "dev": "DEBUG=tunnel:client TUNNEL_SERVER=https://pre.d8d.fun LOCAL_PORT=9000 node server2.js"
  24. },
  25. "dependencies": {
  26. "axios": "0.21.4",
  27. "debug": "4.3.2",
  28. "openurl": "1.1.1",
  29. "yargs": "17.1.1",
  30. "socket.io-client": "^4.7.2",
  31. "@d8d-socket-tunnel/client":"1.0.0"
  32. },
  33. "devDependencies": {
  34. "mocha": "~9.1.1"
  35. },
  36. "engines": {
  37. "node": ">=8.3.0"
  38. }
  39. }