forked from Gawdl3y/discord-rpbot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.21 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
{
"name": "discord-rpbot",
"version": "2.11.0",
"description": "A Discord bot that contains commands useful for text roleplaying",
"license": "MIT",
"author": "Schuyler Cebulskie <Gawdl3y@gawdl3y.com> (https://gawdl3y.com/)",
"repository": {
"type": "git",
"url": "https://github.com/Gawdl3y/discord-rpbot.git"
},
"bugs": {
"url": "https://github.com/Gawdl3y/discord-rpbot/issues"
},
"keywords": [
"discord",
"bot",
"roleplaying",
"dice"
],
"preferGlobal": true,
"scripts": {
"build": "gulp"
},
"bin": {
"rpbot": "lib/rpbot.js",
"rpbot-sharder": "lib/sharder.js"
},
"dependencies": {
"discord-graf": "^0.15.0",
"discord.js": "^11.0.0",
"yargs": "^6.6.0",
"common-tags": "^1.4.0",
"sqlite": "^2.3.0",
"dice-expression-evaluator": "^0.1.0",
"universal-analytics": "^0.4.0"
},
"devDependencies": {
"gulp": "gulpjs/gulp#4.0",
"gulp-babel": "^6.1.0",
"gulp-sourcemaps": "^2.4.0",
"gulp-exec": "^2.1.0",
"gulp-eslint": "^3.0.0",
"del": "^2.2.0",
"eslint": "^3.14.0",
"babel-eslint": "^7.1.0",
"babel-preset-es2015-node6": "^0.4.0",
"fast-async": "^6.2.0"
},
"engines": {
"node": ">=6.0.0"
},
"babel": {
"presets": ["es2015-node6"],
"plugins": ["fast-async"]
}
}