-
-
Notifications
You must be signed in to change notification settings - Fork 64
/
Copy pathpackage.json
75 lines (75 loc) · 2.05 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
72
73
74
75
{
"name": "google-news-scraper",
"version": "2.0.0",
"description": "Lightweight async scraper for Google News",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.mjs",
"types": "./dist/tsc/index.d.ts",
"exports": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js"
},
"files": [
"dist/cjs",
"dist/esm",
"dist/tsc/**/*.d.ts"
],
"scripts": {
"test": "jest",
"build:ts": "tsc",
"build:rollup": "rollup -c",
"build": "rm -rf ./dist/* && npm run build:ts && npm run build:rollup",
"build:ci": "rm -rf ./dist/* && npm run build:ts && rollup -c --bundleConfigAsCjs"
},
"repository": {
"type": "git",
"url": "https://github.com/lewisdonovan/google-news-scraper"
},
"keywords": [
"news",
"scraper",
"google",
"google news",
"news scraper",
"crawler",
"web crawler",
"news crawler",
"google crawler"
],
"author": "Lewis Donovan",
"license": "SEE LICENSE IN LICENSE.txt",
"dependencies": {
"@mozilla/readability": "^0.5.0",
"@rollup/plugin-babel": "^6.0.4",
"cheerio": "^1.0.0-rc.3",
"jsdom": "^25.0.0",
"puppeteer": "^23.6.0",
"winston": "^3.15.0"
},
"devDependencies": {
"@babel/core": "^7.23.9",
"@babel/plugin-transform-runtime": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@semantic-release/npm": "^12.0.1",
"@types/jsdom": "^21.1.7",
"@types/winston": "^2.4.4",
"babel-jest": "^29.7.0",
"expect.js": "^0.3.1",
"jest": "^29.7.0",
"rollup": "^4.24.0",
"rollup-plugin-delete": "^2.1.0",
"semantic-release": "^24.2.0",
"typescript": "^5.6.3"
},
"optionalDependencies": {
"@rollup/rollup-linux-x64-gnu": "4.24.2"
},
"funding": "https://donate.stripe.com/6oE7ue8n57wk4PS7ss"
}