This repository was archived by the owner on Jan 29, 2023. It is now read-only.
forked from synzen/MonitoRSS
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2 KB
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
{
"name": "discord.rss",
"version": "6.0.0-dev",
"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 --testTimeout=10000",
"test-unit": "jest ./src/tests --detectOpenHandles --testRegex=unit_",
"test-watch-unit": "jest ./src/tests --detectOpenHandles --testRegex=unit_ --watchAll",
"test-int": "jest ./src/tests --detectOpenHandles --testRegex=int_ --testTimeout=10000",
"test-watch-int": "jest ./src/tests --detectOpenHandles --testRegex=int_ --testTimeout=10000 --watchAll",
"test-watch": "jest ./src/tests --detectOpenHandles --watchAll",
"eslint": "eslint --fix ./src"
},
"dependencies": {
"cloudscraper": "^4.3.0",
"discord.js": "github:discordjs/discord.js",
"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.8.2",
"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": {
"@shelf/jest-mongodb": "^1.1.3",
"@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"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"erlpack": "github:discordapp/erlpack",
"utf-8-validate": "^5.0.2",
"zlib-sync": "^0.1.6"
}
}