-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 982 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
37
38
39
40
41
{
"name": "paywall-reader",
"description": "A web app that lets you read articles on popular news sites that get hidden behind paywalls.",
"version": "2.0.1",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/joshterrill/paywall-reader.git"
},
"keywords": [
"paywall",
"bypass",
"paywall",
"reader",
"news"
],
"author": "Josh Terrill",
"license": "MIT",
"bugs": {
"url": "https://github.com/joshterrill/paywall-reader/issues"
},
"homepage": "https://github.com/joshterrill/paywall-reader#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"dotenv": "^16.0.1",
"express": "^4.18.1",
"express-handlebars": "^6.0.6",
"marked": "^4.0.18",
"node-fetch": "2.6.7"
},
"devDependencies": {
"chai": "^4.3.6",
"mocha": "^10.0.0",
"nodemon": "^2.0.19"
}
}