This repository has been archived by the owner on Oct 7, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
105 lines (105 loc) · 2.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
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
{
"name": "lightbringer",
"version": "1.3.0",
"description": "Yet another Discord self-bot written with Discord.js",
"author": "",
"license": "MIT",
"repository": "github:BobbyWibowo/Lightbringer",
"bugs": "https://github.com/BobbyWibowo/Lightbringer/issues",
"main": "src/bot.js",
"scripts": {
"start": "node src/bot.js",
"background": "screen -dmS lb node src/bot.js",
"pm2": "pm2 start --name lb src/bot.js"
},
"engines": {
"node": ">=7.6.0"
},
"dependencies": {
"booru": "^0.4.0",
"chalk": "^2.3.2",
"cheerio": "^1.0.0-rc.2",
"common-tags": "^1.7.2",
"didyoumean2": "^1.2.0",
"discord.js": "^11.3.2",
"emoji-regex": "^6.5.1",
"encodeurl": "^1.0.2",
"erlpack": "discordapp/erlpack",
"figlet": "^1.2.0",
"filesize": "^3.6.1",
"fs-extra": "^5.0.0",
"giphy-api": "^1.2.7",
"graceful-fs": "^4.1.11",
"html-entities": "^1.2.1",
"js-beautify": "^1.7.5",
"mathjs": "^4.1.0",
"minimatch": "^3.0.4",
"moment": "^2.22.0",
"mw-dict": "^3.0.0",
"normalize-url": "^2.0.1",
"os-toolbox": "^0.2.9",
"path": "^0.12.7",
"pixel-average": "^1.0.1",
"prompt": "^1.0.0",
"readdir-recursive": "^0.0.4",
"relevant-urban": "^2.0.0",
"roll": "^1.2.0",
"saurus": "^1.3.1",
"snekfetch": "^3.6.4",
"txtgen": "^2.0.1",
"uws": "^9.14.0",
"wikijs": "^4.6.1",
"xml2js": "^0.4.19"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.10.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1"
},
"standard": {
"globals": [
"bot",
"consts"
]
},
"eslintConfig": {
"env": {
"browser": true,
"node": true
},
"extends": [
"standard"
],
"globals": {
"bot": false,
"consts": false
},
"rules": {
"curly": [
"error",
"all"
],
"prefer-const": [
"error",
{
"destructuring": "any",
"ignoreReadBeforeAssign": false
}
],
"object-shorthand": [
"error",
"always"
],
"quotes": [
"error",
"single"
]
}
},
"eslintIgnore": [
"**/*.min.js"
]
}