-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.17 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
{
"name": "scrapyteer",
"version": "1.4.0",
"description": "Web scraping/crawling framework built on top of headless Chrome",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "tsc && jest test"
},
"author": "Max Miroshnikov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/miroshnikov/scrapyteer.git"
},
"homepage": "https://github.com/miroshnikov/scrapyteer#readme",
"devDependencies": {
"@types/ramda": "^0.29.11",
"jest": "^29.7.0",
"typescript": "^5.3.3"
},
"dependencies": {
"commander": "^12.0.0",
"puppeteer": "^22.3.0",
"ramda": "^0.29.1"
},
"keywords": [
"scrape",
"scraping",
"scraper",
"web-scraper",
"scraping-framework",
"node-scraper",
"scrapy",
"crawl",
"crawling",
"crawler",
"web-crawler",
"crawling-framework",
"spider",
"puppeteer"
],
"bugs": {
"url": "https://github.com/miroshnikov/scrapyteer/issues"
},
"files": [
"dist/",
"bin/"
],
"bin": {
"scrapyteer": "bin/scrapyteer.js"
},
"jest": {
"testTimeout": 60000
}
}