-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.54 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
47
48
49
50
51
52
53
54
55
56
{
"name": "luckybot",
"version": "0.0.11",
"description": "Opinionated Instagram automation tool",
"main": "dist/es5/index.js",
"jsnext:main": "dist/es2015/index.js",
"module": "dist/es2015/index.js",
"types": "dist/es5/index.d.ts",
"scripts": {
"dev": "ts-node-dev --respawn --transpileOnly ./example/index.ts",
"build:es5": "tsc --project build/tsconfig.es5.json",
"build:es2015": "tsc --project build/tsconfig.es2015.json",
"build": "rm -rf dist && yarn build:es5 && yarn build:es2015",
"build:example": "rm -rf example/dist && tsc --project build/tsconfig.example.json",
"typecheck": "tsc --noEmit --project tsconfig.json",
"test": "jest -c build/jest.config.js --forceExit",
"test:watch": "yarn test --watch",
"release": "npm version patch && git push --tags && git push && npm publish",
"clean": "rm -rf dist",
"prepublishOnly": "yarn clean && yarn build"
},
"dependencies": {
"instagram-private-api": "^0.6.8",
"puppeteer": "^1.13.0",
"tslib": "^1.9.3"
},
"devDependencies": {
"@types/jest": "^24.0.11",
"@types/puppeteer": "^1.12.3",
"jest": "^24.5.0",
"ts-node-dev": "^1.0.0-pre.32",
"typescript": "^3.3.4000"
},
"engines": {
"node": ">=8.5.0"
},
"repository": "[email protected]:devlucky/luckybot.git",
"author": "devlucky",
"license": "MIT",
"maintainers": [
"zzarcon",
"MP0w",
"joanromano"
],
"files": [
"dist"
],
"keywords": [
"instagram",
"bot",
"lucky",
"instagram-bot",
"opinionated",
"free"
]
}