-
Notifications
You must be signed in to change notification settings - Fork 108
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "InstagramBot.js",
"version": "0.3.0",
"description": "Instagram Bot made with love and nodejs",
"main": "bot.js",
"scripts": {
"start": "node bot.js",
"start-forever": "forever -o ./logs/debug.log -e ./logs/errors.log start bot.js",
"start-pm2": "pm2 -o ./logs/debug.log -e ./logs/errors.log start bot.js",
"start-selenium-desktop": "pm2 start bin/run-selenium-desktop.sh",
"start-selenium-server": "pm2 start bin/run-selenium-server.sh",
"stop": "node stop bot.js",
"stop-forever": "forever stop bot.js",
"stop-pm2": "pm2 stop bot.js",
"stop-selenium-desktop": "pm2 stop bin/run-selenium-desktop.sh",
"stop-selenium-server": "pm2 stop bin/run-selenium-server.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/ptkdev/instagram-bot.js.git"
},
"keywords": [
"bot",
"ptkdev",
"instagram",
"instagram-bot",
"selenium",
"webdriverio"
],
"author": "Patryk Rzucidlo [@ptkdev] <[email protected]> (https://ptkdev.it)",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/ptkdev/instagram-bot.js/issues"
},
"homepage": "https://instagram-bot.js.ptkdev.io",
"dependencies": {
"forever": "^0.15.0",
"path": "^0.12.7",
"pm2": "^2.7.2",
"system-sleep": "^1.3.6",
"webdriverio": "^4.10.1"
},
"engines": {
"node": ">=8.1.3"
}
}