-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
88 lines (88 loc) · 2.51 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
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@ournet/news-reader",
"version": "0.1.0",
"description": "Ournet news-reader app",
"scripts": {
"start": "node ./lib/app.js",
"pretest": "yarn clean && yarn tsc",
"test": "ava --no-cache --verbose lib/**/*.test.js",
"posttest": "yarn clean-test-code",
"retest": "ava --no-cache --verbose lib/**/*.test.js",
"tsc": "./node_modules/.bin/tsc",
"tscw": "tsc -w",
"preversion": "yarn tsc",
"postversion": "git push --follow-tags",
"prepublishOnly": "yarn tsc && yarn clean-test-code",
"clean": "rimraf ./lib",
"clean-test-code": "rimraf ./lib/**/*.test.js"
},
"engines": {
"node": ">=12.16.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ournet/news-reader.git"
},
"keywords": [
"news-reader",
"ournet"
],
"author": "Dumitru Cantea",
"license": "ISC",
"bugs": {
"url": "https://github.com/ournet/news-reader/issues"
},
"homepage": "https://github.com/ournet/news-reader#readme",
"devDependencies": {
"@types/cheerio": "0.22.10",
"@types/entities": "^1.1.0",
"@types/feedparser": "^2.2.1",
"@types/mongodb": "^3.1.18",
"@types/node": "10.12.18",
"@types/sharp": "^0.25.0",
"ava": "^3.0.0",
"debug": "^4.1.1",
"rimraf": "^2.6.3",
"typescript": "^4.5.5"
},
"dependencies": {
"@ournet/domain": "~0.4.2",
"@ournet/images-data": "~0.1.x",
"@ournet/images-domain": "~0.1.x",
"@ournet/news-data": "~0.2.0",
"@ournet/news-domain": "~0.2.0",
"@ournet/quotes-data": "~0.3.x",
"@ournet/quotes-domain": "~0.3.x",
"@ournet/topics-data": "~0.1.x",
"@ournet/topics-domain": "~0.1.x",
"@ournet/videos-data": "~0.1.x",
"@ournet/videos-domain": "~0.1.x",
"ascrape": "^0.2.0",
"aws-sdk": "^2.384.0",
"axios": "^1.4.0",
"charset": "^1.0.1",
"cheerio": "1.0.0-rc.2",
"dotenv": "^6.2.0",
"ellipsize": "^0.1.0",
"entities": "^1.1.2",
"feedparser": "^2.2.10",
"get-image-colors": "^2.0.0",
"get-video-id": "^3.4.1",
"iconv-lite": "^0.4.24",
"in-text-search": "^0.1.0",
"metascraper": "^5.24.2",
"metascraper-date": "^5.24.2",
"metascraper-description": "^5.24.2",
"metascraper-image": "^5.24.2",
"metascraper-title": "^5.24.2",
"metascraper-url": "^5.24.2",
"mongodb": "^3.1.10",
"news-sanitizer": "^0.1.8",
"news-sources": "^0.1.12",
"quote-parser": "^0.1.10",
"sanitize-html": "^2.3.2",
"sharp": "^0.30.5",
"standard-text": "^0.1.1",
"striptags": "^3.2.0"
}
}