-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
88 lines (88 loc) · 1.75 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
{
"name": "satania-bot",
"version": "1.0.0",
"description": "The most devilish bot for Discord!",
"main": "main.js",
"author": "Pizzacus",
"license": "MIT",
"homepage": "https://satania.moe/",
"repository": "https://github.com/Pizzacus/SataniaBot.git",
"private": true,
"dependencies": {
"cheerio": "^1.0.0-rc.3",
"discord-akairo": "^7.5.6",
"discord.js": "^11.5.1",
"en-inflectors": "^1.0.12",
"en-lexicon": "^1.0.11",
"file-type": "^12.4.0",
"indefinite": "^2.3.1",
"js-yaml": "^3.13.1",
"make-fetch-happen": "^5.0.0",
"regenerate": "^1.4.0",
"seedrandom": "^3.0.5",
"sharp": "^0.23.2",
"tough-cookie": "^3.0.1"
},
"optionalDependencies": {
"@discordjs/uws": "^10.149.0",
"clarifai": "^2.9.1",
"erlpack": "discordapp/erlpack"
},
"devDependencies": {
"eslint": "^6.0.1",
"eslint-config-xo": "^0.26.0",
"regexgen": "^1.3.0",
"xo": "^0.24.0"
},
"scripts": {
"lint": "xo"
},
"xo": {
"rules": {
"no-await-in-loop": 0,
"unicorn/no-process-exit": 0,
"prefer-destructuring": 0,
"valid-jsdoc": [
"error",
{
"matchDescription": "^[^a-z]",
"preferType": {
"String": "string",
"Number": "number",
"Boolean": "boolean",
"Symbol": "symbol",
"object": "Object",
"function": "Function",
"array": "Array",
"date": "Date",
"error": "Error"
},
"prefer": {
"return": "returns",
"arg": "param",
"argument": "param",
"prop": "property",
"yield": "yields"
}
}
],
"eqeqeq": [
"error",
"always",
{
"null": "ignore"
}
],
"no-eq-null": [
"off"
]
},
"globals": [
"requireUtil"
],
"ignores": [
"src/utils/emoji-regex.js",
"src/utils/east-asian-width-regex.js"
]
}
}