forked from bugbounted/instabot-core
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.25 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.25 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "instabot-core",
"version": "1.1.39",
"description": "Instagram comment generator robot",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --config jest.config.js",
"test:cov": "npm test -- --coverage",
"test:watch": "npm test -- --watch",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand",
"test:e2e": "npm test -- --config jest-e2e.json",
"build": "tsc",
"format": "prettier --write \"src/**/*.(js|ts)\"",
"postformat": "prettier --write \"examples/**/*.(js|ts|md|mjs|cjs)\"",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --fix --ext .js,.ts",
"prepare": "husky install",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"start": "node node.cjs",
"prestart": "npm run build"
},
"bin": {
"instabot": "node.cjs"
},
"engines": {
"node": ">=14.20.1",
"npm": ">=6.14.17"
},
"os": [
"!darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"!arm",
"!mips"
],
"repository": {
"type": "git",
"url": "git+https://github.com/hebertcisco/instabot-core.git"
},
"keywords": [
"boilerplate",
"typescript"
],
"author": "Hebert Cisco",
"license": "MIT",
"bugs": {
"url": "https://github.com/hebertcisco/instabot-core/issues"
},
"homepage": "https://github.com/hebertcisco/instabot-core#readme",
"dependencies": {
"axios": "^1.0.0",
"dotenv": "^16.0.2",
"emoji-library": "^0.0.32",
"pensador-promise": "^0.3.2",
"puppeteer": "^20.0.0"
},
"devDependencies": {
"@types/jest": "29.5.2",
"@types/node": "18.16.18",
"@types/puppeteer": "5.4.7",
"@typescript-eslint/eslint-plugin": "5.60.0",
"@typescript-eslint/parser": "5.60.0",
"eslint": "8.43.0",
"eslint-plugin-jest": "27.2.2",
"husky": "8.0.3",
"jest": "29.5.0",
"prettier": "2.8.8",
"ts-jest": "29.1.0",
"typescript": "5.1.3"
},
"files": [
"lib/**/*"
],
"optionalDependencies": {
"@types/puppeteer-core": "5.4.0"
},
"bundledDependencies": [
"puppeteer-core"
]
}