-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 1.02 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
{
"name": "rss-torrent-reader",
"version": "0.0.1",
"description": "This shall read RSS-feeds and download the torrentfile, also have a smartness filter",
"main": "index.js",
"scripts": {
"test": "jest",
"start": "NODE_ENV=production node --harmony index.js",
"dev": "node --harmony index.js",
"dev:prod": "NODE_ENV=production node --harmony index.js",
"setup": "configurator setup -r vongohren/personal-apps-config -f feedDownloader"
},
"author": "Snorrre Lothar von Gohren Edwin <[email protected]> (https://github.com/Snorlock)",
"license": "ISC",
"dependencies": {
"feedparser": "^1.1.5",
"firebase-admin": "^4.0.4",
"memory-cache": "^0.2.0",
"moment": "^2.19.3",
"request": "^2.78.0",
"request-promise-native": "^1.0.7",
"string_score": "^0.1.22",
"torrent-name-parser": "^0.6.5",
"winston": "^2.3.1",
"winston-papertrail": "^1.0.4"
},
"devDependencies": {
"@diwala/configurator": "^0.1.1",
"codecov": "^3.7.1",
"jest": "^24.5.0"
}
}