forked from yujiosaka/headless-chrome-crawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.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": "3.1.0",
"jquery": "3.3.1",
"lodash": "4.17.5",
"puppeteer": "1.5.0",
"request": "2.87.0",
"request-promise": "4.2.2",
"robots-parser": "1.0.2"
},
"peerDependencies": {
"redis": "2.8.0"
},
"devDependencies": {
"@commitlint/cli": "7.0.0",
"@commitlint/config-conventional": "7.0.0",
"@types/debug": "0.0.30",
"@types/lodash": "4.14.110",
"@types/node": "10.3.4",
"@types/puppeteer": "1.3.4",
"@types/request-promise": "4.1.41",
"eslint": "5.0.1",
"eslint-config-airbnb": "17.0.0",
"eslint-plugin-import": "2.13.0",
"greenkeeper-lockfile": "1.15.1",
"husky": "0.14.3",
"jest": "23.1.0",
"mime": "2.3.0",
"redis": "2.8.0",
"typescript": "2.7.2"
},
"keywords": [
"headless",
"chrome",
"crawler",
"crawling",
"jquery",
"promise",
"puppeteer",
"scraper",
"scraping"
],
"engines": {
"node": ">=8.10.0"
}
}