This repository was archived by the owner on Jul 31, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.6 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.6 KB
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
{
"name": "Ava-Central",
"version": "0.4.1",
"description": "A Discord Bot made to help support a Discord Bot",
"main": "start.js",
"maintainers": [
{
"name": "Alexis Tan",
"email": "alexis@sen-dev.com"
}
],
"author": {
"name": "Alexis Tan",
"email": "alexis@sen-dev.com",
"url": "https://senither.com"
},
"scripts": {
"start": "node start.js"
},
"engines": {
"node": "4.x.x - 6.x.x",
"npm": ">=3.x.x"
},
"xo": {
"space": 4,
"semicolon": true,
"globals": [
"app",
"bot",
"getEnvironment",
"isEnvironmentInTesting",
"isEnvironmentInProduction",
"isEnvironmentInDevelopment"
],
"rules": {
"camelcase": 0,
"new-parens": 0,
"guard-for-in": 0,
"prefer-const": 0,
"no-eval": 0,
"no-unused-vars": 0,
"no-prototype-builtins": 0,
"unicorn/filename-case": 0,
"import/no-dynamic-require": 0
}
},
"license": "MIT",
"dependencies": {
"discordie": "^0.11.0",
"fs-extra": "^2.0.0",
"knex": "^0.12.7",
"lodash": "^4.17.4",
"mysql": "^2.13.0",
"node-schedule": "^1.2.0",
"request": "^2.81.0",
"require-directory": "^2.1.1",
"sqlite3": "^3.1.8",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6"
},
"devDependencies": {
"xo": "^0.18.0"
},
"snyk": true
}