forked from synzen/MonitoRSS
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.93 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.93 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
{
"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": {
"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",
"locale-verify": "node scripts/locales/verify.js",
"locale-create": "node scripts/locales/create.js"
},
"dependencies": {
"@hapi/joi": "^17.1.0",
"cloudscraper": "^4.6.0",
"discord.js": "^12.0.0",
"feedparser": "^2.2.9",
"html-to-text": "^5.1.1",
"iconv-lite": "^0.4.24",
"moment": "^2.24.0",
"moment-timezone": "^0.5.28",
"mongoose": "^5.9.2",
"node-fetch": "^2.6.0",
"pino": "^5.17.0",
"pino-pretty": "^3.6.0",
"redis": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synzen/Discord.RSS.git"
},
"engines": {
"node": "12.x",
"npm": "6.x"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.1.3",
"@types/jest": "^24.9.1",
"eslint": "^5.16.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.1",
"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"
}
}