forked from synzen/MonitoRSS
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 2.04 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "monitorss",
"version": "6.6.2",
"description": "Discord RSS bot with customizable feeds",
"main": "index.js",
"author": "synzen",
"license": "MIT",
"bugs": {
"url": "https://github.com/synzen/MonitoRSS/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.1",
"abort-controller": "^3.0.0",
"cloudscraper": "^4.6.0",
"discord.js": "^12.3.1",
"discord.js-prompts": "^2.2.1",
"feedparser": "^2.2.10",
"html-to-text": "^5.1.1",
"iconv-lite": "^0.5.2",
"ioredis": "^4.17.3",
"moment": "^2.27.0",
"moment-timezone": "^0.5.31",
"mongoose": "^5.10.2",
"node-fetch": "^2.6.0",
"pino": "^6.5.1",
"pino-pretty": "^4.2.0",
"redis": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/synzen/MonitoRSS.git"
},
"engines": {
"node": ">=12.16",
"npm": "6.x"
},
"devDependencies": {
"@shelf/jest-mongodb": "^1.2.3",
"@types/jest": "^25.2.3",
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"heapdump": "^0.3.15",
"jest": "^26.4.2"
},
"optionalDependencies": {
"bufferutil": "^4.0.1",
"erlpack": "github:discordapp/erlpack",
"utf-8-validate": "^5.0.2",
"zlib-sync": "^0.1.6"
}
}