-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.58 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": "readable-extractor-comparison",
"version": "1.0.0",
"description": "A benchmark for manually evaluating different readable extractors for webpages",
"main": "index.js",
"repository": "github.com/awendland/readable-extractor-comparison.git",
"author": "Alex Wendland <[email protected]>",
"license": "MIT",
"scripts": {
"commit": "git-cz",
"scripts:run": "ts-node-script --transpile-only",
"scripts:tsc": "tsc -p scripts/",
"scripts:check": "yarn scripts:tsc --noEmit",
"scripts:watch": "yarn scripts:check --watch"
},
"dependencies": {
"@postlight/mercury-parser": "2.2.0",
"@types/jsdom": "16.2.3",
"@types/mozilla-readability": "0.1.4",
"@types/node": "14",
"@types/postlight__mercury-parser": "2.2.2",
"@types/yargs": "15.0.5",
"cleanview": "1.5.9",
"fast-glob": "3.2.3",
"filenamify-url": "2.1.1",
"fp-ts": "2.6.5",
"fp-ts-contrib": "0.1.16",
"got": "11.3.0",
"io-ts": "2.2.5",
"jsdom": "16.2.2",
"metascraper": "5.12.6",
"metascraper-author": "5.11.21",
"metascraper-description": "5.11.21",
"metascraper-image": "5.11.21",
"metascraper-title": "5.11.21",
"mozilla-readability": "github:mozilla/readability",
"ts-node": "8.10.2",
"typescript": "3.9.5",
"yargs": "15.3.1"
},
"devDependencies": {
"commitizen": "4.1.2",
"cz-conventional-changelog": "3.2.0"
},
"prettier": {
"semi": false
},
"engines": {
"node": ">=14",
"yarn": "1.x"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}