forked from yujiosaka/headless-chrome-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.96 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "headless-chrome-crawler",
"version": "1.8.0",
"description": "Distributed web crawler powered by Headless Chrome",
"main": "index.js",
"license": "MIT",
"author": "Yuji Isobe",
"scripts": {
"commitmsg": "commitlint -e $GIT_PARAMS",
"greenkeeper-lockfile-update": "greenkeeper-lockfile-update",
"greenkeeper-lockfile-upload": "greenkeeper-lockfile-upload",
"lint": "eslint --quiet -f codeframe . || eslint .",
"jest-exclude-redis-cache": "yarn jest $(find test -name '*.test.js' -not -name 'redis.test.js')",
"jest": "jest --maxWorkers=1",
"test": "yarn tsc && yarn lint && yarn jest-exclude-redis-cache",
"test-all": "yarn tsc && yarn lint && yarn jest",
"tsc": "tsc -p ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/yujiosaka/headless-chrome-crawler.git"
},
"bugs": {
"url": "https://github.com/yujiosaka/headless-chrome-crawler/issues"
},
"homepage": "https://github.com/yujiosaka/headless-chrome-crawler#readme",
"dependencies": {
"debug": "4.3.4",
"jquery": "3.6.1",
"lodash": "4.17.21",
"puppeteer": "18.0.5",
"request": "2.88.2",
"request-promise": "4.2.6",
"robots-parser": "3.0.0"
},
"peerDependencies": {
"redis": "4.3.1"
},
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/debug": "4.1.7",
"@types/lodash": "4.14.185",
"@types/node": "18.7.18",
"@types/puppeteer": "5.4.6",
"@types/request-promise": "4.1.48",
"eslint": "8.23.1",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.26.0",
"greenkeeper-lockfile": "1.15.1",
"husky": "8.0.1",
"jest": "29.0.3",
"mime": "3.0.0",
"redis": "4.3.1",
"typescript": "4.8.3"
},
"keywords": [
"headless",
"chrome",
"crawler",
"crawling",
"jquery",
"promise",
"puppeteer",
"scraper",
"scraping"
],
"engines": {
"node": ">=8.10.0"
}
}