forked from Pelellone/instagram-bot.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·60 lines (60 loc) · 1.7 KB
/
package.json
File metadata and controls
executable file
·60 lines (60 loc) · 1.7 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "instagrambotjs",
"description": "instagram bot made with love and nodejs",
"version": "0.7.4",
"main": "bot.js",
"author": "Patryk Rzucidlo [@ptkdev] <support@ptkdev.io> (https://ptkdev.it)",
"license": "GPL-3.0",
"homepage": "https://instagram.bot.ptkdev.io",
"repository": {
"type": "git",
"url": "https://github.com/social-manager-tools/instagram-bot.js.git"
},
"bugs": {
"url": "https://github.com/social-manager-tools/instagram-bot.js/issues"
},
"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-pm2-nolog": "pm2 -o /dev/null -e ./logs/errors.log start bot.js ",
"stop": "killall node",
"stop-forever": "forever stop bot.js",
"stop-pm2": "pm2 stop bot.js",
"lint": "eslint ./ --cache --ignore-pattern .gitignore --fix",
"precommit-lint-check": "echo 'Pre-commit lint checks...' && exit 0"
},
"pre-commit": [
"precommit-lint-check",
"lint"
],
"keywords": [
"bot",
"ptkdev",
"instagram",
"instagram-bot",
"puppeteer",
"selenium",
"webdriverio"
],
"dependencies": {
"colors": "^1.2.1",
"eslint": "^4.19.1",
"path": "^0.12.7",
"puppeteer": "1.4.0",
"request": "^2.85.0",
"system-sleep": "^1.3.6"
},
"engines": {
"node": ">=7.6.0"
},
"devDependencies": {
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-snakecasejs": "^1.0.0",
"eslint-plugin-standard": "^3.1.0",
"pre-commit": "^1.2.2"
}
}