forked from synzen/MonitoRSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.33 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
{
"name": "discord.rss",
"version": "5.1.0",
"description": "Discord RSS bot with customizable feeds",
"main": "index.js",
"author": "synzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/synzen/Discord.RSS/issues"
},
"scripts": {
"start": "node server.js",
"postinstall": "cd src && cd web && npm install",
"dev": "node -r dotenv/config server.js",
"dev-sharded": "node -r dotenv/config server-manager.js",
"test": "jest ./src/tests --detectOpenHandles",
"eslint": "eslint --fix ./src"
},
"dependencies": {
"cloudscraper": "^4.3.0",
"discord.js": "^11.5.1",
"feedparser": "^2.2.9",
"html-to-text": "^5.1.1",
"iconv-lite": "^0.4.24",
"moment": "^2.24.0",
"moment-timezone": "^0.5.27",
"mongoose": "^5.7.6",
"node-fetch": "^2.6.0",
"redis": "^2.8.0",
"request": "^2.88.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synzen/Discord.RSS.git"
},
"engines": {
"node": "10.x",
"npm": "6.x"
},
"devDependencies": {
"@types/jest": "^24.0.19",
"dotenv": "^8.2.0",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^9.2.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^24.9.0"
}
}