-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 1.87 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
{
"name": "instabot-core",
"version": "1.0.8",
"description": "Instagram comment generator robot",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"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",
"test": "jest --config jest.config.js",
"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 example/index.js",
"prestart": "npm run build"
},
"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": "^0.26.0",
"beautlog": "^0.4.0",
"chrome-launcher": "^0.15.0",
"chromium": "^3.0.2",
"date-handle": "^0.0.2",
"dotenv": "^16.0.0",
"pensador-promise": "^0.3.0",
"puppeteer": "^14.0.0",
"puppeteer-core": "^14.0.0"
},
"devDependencies": {
"@types/axios": "0.14.0",
"@types/dotenv": "8.2.0",
"@types/jest": "27.5.1",
"@types/puppeteer": "5.4.6",
"@types/puppeteer-core": "5.4.0",
"@typescript-eslint/eslint-plugin": "5.27.0",
"@typescript-eslint/parser": "5.27.0",
"eslint": "8.16.0",
"eslint-plugin-jest": "26.4.6",
"husky": "8.0.1",
"jest": "28.1.0",
"nodemon": "2.0.15",
"prettier": "2.6.2",
"ts-jest": "28.0.3",
"typescript": "4.7.2"
},
"files": [
"lib/**/*"
]
}