forked from aternosorg/modbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.23 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
{
"name": "modbot",
"version": "2.2.0",
"description": "Discord Bot for the Aternos Discord server",
"main": "index.js",
"scripts": {
"test": "jest",
"prepare": "husky install",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aternosorg/modbot.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/aternosorg/modbot/issues"
},
"homepage": "https://github.com/aternosorg/modbot#readme",
"engines": {
"node": ">=16.6.0"
},
"dependencies": {
"@google-cloud/logging": "^9.1.1",
"@googleapis/youtube": "^2.0.0",
"diff": "^4.0.2",
"discord.js": "^13.5.0",
"fuse.js": "^6.4.6",
"got": "^11.8.2",
"mysql": "^2.18.1",
"string-similarity": "^4.0.4",
"turndown": "^7.1.1"
},
"devDependencies": {
"eslint": "^8.3.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-jsdoc": "^37.0.3",
"eslint-plugin-json": "^3.1.0",
"husky": "^6.0.0",
"jest": "^27.2.5",
"lint-staged": "^11.0.0"
},
"lint-staged": {
"*.js": [
"eslint --fix",
"jest --passWithNoTests --findRelatedTests"
],
"*.json": [
"eslint --fix"
]
}
}