-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.26 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
{
"name": "instabotjs",
"author": "Bryan Manuele",
"version": "2.7.3",
"description": "An Instagram automation CLI-app that lets you automate posting, following and refollowing",
"keywords": [
"instagram",
"bot",
"automation",
"reddit",
"auto",
"insta"
],
"homepage": "https://www.npmjs.com/package/instabotjs",
"repository": "https://github.com/fermidirak/instabotjs",
"bugs": {
"url": "https://github.com/fermidirak/instabotjs/issues",
"email": "ManueleBryan@gmail.com"
},
"license": "WTFPL",
"contributors": [
"aziz512 <aziz.yokubjonov@gmail.com>"
],
"main": "index.ts",
"bin": {
"instabot": "./build/index.js"
},
"scripts": {
"build": "tsc",
"test": "node ./lib/index.js",
"start": "nodemon --exec ./node_modules/.bin/ts-node -- index.ts"
},
"devDependencies": {
"@types/node": "^10.7.0",
"nodemon": "^1.18.3",
"ts-node": "^7.0.1",
"typescript": "^3.0.1"
},
"dependencies": {
"axios": "^0.18.0",
"chalk": "^2.4.1",
"commander": "^2.17.1",
"dotenv": "^6.0.0",
"image-downloader": "^3.4.1",
"image-size": "^0.6.3",
"inquirer": "^6.1.0",
"node-gyp": "^3.8.0",
"node-pre-gyp": "^0.11.0",
"puppeteer": "^1.7.0",
"sharp": "^0.20.5"
}
}