This repository has been archived by the owner on Dec 28, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 158
/
package.json
120 lines (120 loc) · 3.38 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "lenoxbot",
"version": "1.15.30",
"description": "",
"main": "lenoxbotlauncher.js",
"directories": {
"doc": "docs"
},
"dependencies": {
"async-foreach": "^0.1.3",
"axios": "^0.19.0",
"body-parser": "^1.18.2",
"btc-value": "^2.0.0",
"canvas": "^2.0.1",
"canvas-constructor": "^3.0.1",
"chalk": "^3.0.0",
"child_process": "^1.0.2",
"clashroyale": "^1.0.0",
"cluster": "^0.7.7",
"connect-mongo": "^3.0.0",
"cookie-parser": "^1.4.3",
"dblapi.js": "^2.3.0",
"debug": "^4.1.1",
"discord.js": "github:discordjs/discord.js",
"discord.js-commando": "github:discordjs/commando",
"express": "^4.16.3",
"express-handlebars": "^5.3.0",
"express-session": "^1.15.6",
"fortnite": "^4.3.2",
"got": "^10.2.1",
"handlebars-helpers": "^0.10.0",
"i18n": "^0.8.3",
"jsdom": "^16.5.1",
"lint": "^1.1.2",
"math-expression-evaluator": "^1.2.17",
"mocha": "^8.3.2",
"moment": "^2.22.2",
"moment-duration-format": "^2.2.2",
"mongodb": "^3.1.9",
"morgan": "^1.9.1",
"ms": "^2.0.0",
"newsapi": "^2.0.1",
"node-async-loop": "^1.2.2",
"node-opus": "^0.3.2",
"opusscript": "^0.0.7",
"os": "^0.1.1",
"overwatch-stats": "^3.0.2",
"passport": "^0.4.0",
"passport-discord": "^0.1.3",
"pm2": "^4.1.2",
"pornsearch": "^2.4.3",
"random-facts": "^1.0.6",
"readline": "^1.3.0",
"request": "^2.88.0",
"request-promise": "^4.2.2",
"saslprep": "^1.0.3",
"simple-youtube-api": "^5.0.1",
"snekfetch": "^4.0.4",
"steamrep": "^1.0.1",
"underscore.string": "^3.3.5",
"url": "^0.11.0",
"util": "^0.12.0",
"winston": "^3.2.1",
"ytdl-core": "^1.0.0"
},
"devDependencies": {
"eslint": "^7.22.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.18.2"
},
"scripts": {
"test": "npm run lint && npm run lint:commands && npm run lint:events && npm run lint:utils",
"lint": "eslint *.js",
"lint:fix": "eslint commands --fix && eslint events --fix && eslint *js --fix && eslint utils --fix",
"lint:commands": "eslint commands",
"lint:events": "eslint events",
"lint:utils": "eslint utils",
"start": "node lenoxbotlauncher.js"
},
"author": "Gilles Heinesch",
"license": "MIT",
"eslintConfig": {
"extends": "airbnb-base",
"env": {
"es6": true,
"browser": true
},
"rules": {
"brace-style": [
"error",
"stroustrup"
],
"comma-dangle": [
"error",
"never"
],
"no-unused-vars": [
"warn"
],
"no-var": [
"off"
],
"one-var": [
"off"
],
"no-multi-assign": [
"off"
],
"guard-for-in": [
"off"
],
"class-methods-use-this": [
"off"
],
"max-len": [
"off"
]
}
}
}