-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.54 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
{
"name": "gnews-scraper",
"version": "1.2.3",
"description": "GNewsScraper is a TypeScript package that scrapes article data from Google News based on a keyword or phrase. It returns the results as an array of JSON objects, making it convenient to access and use the scraped information",
"main": "build/index.js",
"type": "module",
"homepage": "https://github.com/dstark5/gnews-scraper",
"repository": {
"type": "git",
"url": "https://github.com/dstark5/gnews-scraper.git"
},
"author": "dstark5",
"scripts": {
"build": "npx tsc -p tsconfig.json",
"start": "node build/index.js",
"test": "c8 -check-coverage --lines 100 --per-file mocha",
"dev": "nodemon -x ts-node --esm src/index.ts"
},
"license": "MIT",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"got": "11.8.6",
"node-cache": "^5.1.2",
"p-limit": "^4.0.0",
"puppeteer": "^20.7.4"
},
"devDependencies": {
"@types/chai": "^4.3.5",
"@types/mocha": "^9.0.0",
"@types/node": "^16.9.1",
"c8": "^8.0.0",
"chai": "^4.3.4",
"mocha": "^9.1.3",
"nodemon": "^2.0.22",
"ts-node": "^10.9.1",
"tslib": "^2.3.0",
"typescript": "^5.0.4"
},
"keywords": [
"gnews-scraper",
"Google News scraper",
"gnews",
"google news",
"gnews scraper",
"news scraper",
"scraping",
"web scraping",
"Google News API",
"web crawling",
"scraping library",
"data scraping",
"news",
"scraper",
"google",
"crawler",
"web crawler",
"news crawler",
"google crawler"
]
}