-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
39 lines (39 loc) · 996 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
{
"name": "rss-to-email",
"description": "Generate HTML email from your RSS feeds",
"homepage": "https://github.com/rsslove/rss-to-email",
"version": "0.11.2",
"main": "src/RssToEmail.js",
"scripts": {
"build": "webpack",
"cli": "node cli.js",
"lint": "eslint src/",
"test": "jest",
"test:integration": "jest tests/integration",
"test:unit": "jest tests/unit --coverage",
"test:watch": "jest --watchAll"
},
"license": "Apache-2.0",
"dependencies": {
"handlebars": "^4.7.7",
"handlebars-helpers": "^0.10.0",
"mjml": "4.9.3",
"node-fetch": "^2.6.1",
"rss-parser": "^3.12.0",
"stampit": "^4.3.2"
},
"devDependencies": {
"eslint": "^7.30.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.23.4",
"file-exists": "^5.0.1",
"jest": "^27.0.6"
},
"repository": {
"type": "git",
"url": "https://github.com/rsslove/rss-to-email"
},
"bin": {
"rss-to-email": "cli.js"
}
}