-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·71 lines (71 loc) · 1.91 KB
/
package.json
File metadata and controls
executable file
·71 lines (71 loc) · 1.91 KB
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": "ascraper",
"version": "0.9.11",
"description": "Article Parser/Scraper",
"main": "lib/index.js",
"scripts": {
"clean": "rimraf lib",
"dev": "nodemon tests/test.js --exec babel-node --",
"test": "babel-node tests/test.js",
"lint": "eslint src tests",
"lint:fix": "eslint src tests --fix",
"build": "npm run clean && cross-env BABEL_ENV=production babel src --out-dir lib"
},
"files": [
"lib",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cvcio/ascraper.git"
},
"bugs": {
"url": "https://github.com/cvcio/ascraper/issues"
},
"homepage": "https://github.com/cvcio/ascraper#readme",
"keywords": [
"nodejs",
"parser",
"scrapper",
"cli",
"module"
],
"author": "Dimitris Papaevagelou <dimitris.papaevagelou@andefined.com>",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.23.9",
"@babel/node": "^7.23.9",
"@babel/preset-env": "^7.23.9",
"cross-env": "^7.0.3",
"eslint": "^8.56.0",
"nodemon": "^3.0.3",
"rimraf": "^5.0.5"
},
"dependencies": {
"@mozilla/readability": "^0.4.1",
"axios": "^1.3.6",
"cheerio": "^1.0.0-rc.5",
"chrono-node": "^2.1.11",
"got-scraping": "3.2.15",
"jsdom": "^24.0.0",
"metascraper": "^5.25.5",
"metascraper-author": "^5.25.5",
"metascraper-date": "^5.25.5",
"metascraper-description": "^5.25.5",
"metascraper-image": "^5.25.5",
"metascraper-lang": "^5.25.5",
"metascraper-logo": "^5.25.5",
"metascraper-logo-favicon": "^5.25.5",
"metascraper-publisher": "^5.25.5",
"metascraper-readability": "^5.25.5",
"metascraper-title": "^5.25.5",
"metascraper-url": "^5.25.5",
"sanitize-html": "^2.3.2",
"strip-ansi": "^7.1.0",
"user-agents": "^1.0.1360"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0 || >=18.0.0 || >=20.0.0"
}
}