lscanbot/package.json

34 lines
843 B
JSON
Raw Normal View History

2018-09-24 21:21:53 +02:00
{
"name": "lscanbot",
"version": "1.0.0",
2020-05-13 00:59:15 +02:00
"description": "A telegram bot to find devices on your LAN.",
"main": "server.js",
2018-09-24 21:21:53 +02:00
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint .",
2020-05-13 00:59:15 +02:00
"start": "node src/server.js"
2018-09-24 21:21:53 +02:00
},
"repository": {
"type": "git",
2020-03-01 23:35:34 +01:00
"url": "git+https://github.com/franjsco/lscanbot.git"
2018-09-24 21:21:53 +02:00
},
2020-03-01 23:35:34 +01:00
"author": "franjsco",
2018-09-24 21:21:53 +02:00
"license": "GPL-3.0",
"bugs": {
2020-03-01 23:35:34 +01:00
"url": "https://github.com/franjsco/lscanbot/issues"
2018-09-24 21:21:53 +02:00
},
2020-03-01 23:35:34 +01:00
"homepage": "https://github.com/franjsco/lscanbot#readme",
2018-09-24 21:21:53 +02:00
"dependencies": {
"arpscan": "^0.6.0",
"bunyan": "^1.8.12",
"network-list": "^1.1.5",
"sqlite3": "^4.0.2",
2020-05-13 00:59:15 +02:00
"telebot": "^1.3.0"
2018-09-24 21:21:53 +02:00
},
"devDependencies": {
2020-05-13 00:59:15 +02:00
"eslint": "^5.16.0",
"eslint-config-airbnb-base": "^13.2.0",
"eslint-plugin-import": "^2.20.2"
2018-09-24 21:21:53 +02:00
}
2020-05-13 00:59:15 +02:00
}