-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
36 lines (36 loc) · 1003 Bytes
/
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
{
"name": "news-crawler",
"version": "1.12.5",
"description": "Config based news crawler using Google Puppeteer",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test": "jest --testMatch \"**/?(*.)+(spec|test).[tj]s?(x)\" --detectOpenHandles --forceExit",
"test:coverage": "jest --coverage --testMatch '**/?(*.)+(spec|test).[tj]s?(x)' --detectOpenHandles --forceExit"
},
"keywords": [
"news crawler",
"puppeteer",
"chromium"
],
"author": "@siristechnology",
"license": "ISC",
"dependencies": {
"html-to-text": "^7.1.1",
"puppeteer": "9.1.1",
"puppeteer-extra": "3.1.18",
"puppeteer-extra-plugin-adblocker": "2.11.11",
"puppeteer-extra-plugin-block-resources": "2.2.9",
"puppeteer-extra-plugin-stealth": "2.7.8"
},
"devDependencies": {
"@babel/core": "^7.14.2",
"@babel/preset-env": "^7.14.2",
"babel-jest": "^26.6.3",
"jest": "^26.6.3"
},
"repository": {
"type": "git",
"url": "https://github.com/siristechnology/news-crawler"
}
}