ngenv/package.json

17 lines
438 B
JSON
Raw Normal View History

2021-11-10 16:35:27 -06:00
{
"name": "ngrok-to-dotenv",
"version": "1.0.0",
"description": "ngrok start-up wrapper that uses a dotenv file to get the authtoken and save the https address",
"main": "ngrok.js",
"license": "MIT",
2021-11-10 17:24:03 -06:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "node --inspect ngrok.js",
"start": "node ngrok"
},
2021-11-10 16:35:27 -06:00
"dependencies": {
2021-11-10 17:24:03 -06:00
"command-line-args": "^5.2.0",
2021-11-10 16:35:27 -06:00
"ngrok": "^4.2.2"
}
}