Files
server/package.json
Ajay Gandhi b1c296a409 Generate human readable IDs for client URLs (#77)
Based on @FranzSkuffka's suggested enhancement in PR 207 on
localtunnel/localtunnel
(https://github.com/localtunnel/localtunnel/pull/207), this PR uses the
"human-readable-ids" package to generate IDs of the form
"adjective-noun-number". These IDs are easier to remember and arguably
more useful in testing since they can be retyped without copying and
pasting.

Some sample IDs generated by this package are:

* heavy-puma-90
* grump-walrus-64
* purple-starfish-58
* nasty-seahorse-9
2018-04-01 18:00:21 -07:00

37 lines
900 B
JSON

{
"author": "Roman Shtylman <shtylman@gmail.com>",
"name": "localtunnel-server",
"description": "expose localhost to the world",
"version": "0.0.8",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/localtunnel/server.git"
},
"dependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "6.26.0",
"babel-register": "6.26.0",
"bluebird": "3.5.1",
"book": "1.3.3",
"debug": "3.1.0",
"human-readable-ids": "1.0.3",
"koa": "2.4.1",
"localenv": "0.2.2",
"on-finished": "2.3.0",
"optimist": "0.6.1",
"pump": "2.0.0",
"tldjs": "1.6.2"
},
"devDependencies": {
"localtunnel": "1.8.0",
"mocha": "2.5.3",
"node-dev": "3.1.3",
"ws": "0.8.0"
},
"scripts": {
"test": "mocha --ui qunit --reporter spec",
"start": "./bin/server",
"dev": "node-dev bin/server --port 3000"
}
}