This repository has been archived by the owner on Apr 30, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
106 lines (106 loc) · 2.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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "Ava-Ire",
"version": "0.58.16",
"description": "A multipurpose Discord bot made for fun",
"main": "start.js",
"license": "MIT",
"homepage": "https://avairebot.com/",
"maintainers": [
{
"name": "Alexis Tan",
"email": "[email protected]"
}
],
"scripts": {
"start": "node start.js",
"test": "xo && mocha tests",
"generate-docs": "esdoc"
},
"author": {
"name": "Alexis Tan",
"email": "[email protected]",
"url": "https://senither.com"
},
"bugs": {
"url": "https://github.com/AvaIre/AvaIre/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/AvaIre/AvaIre"
},
"engines": {
"node": ">=6.0.0",
"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
},
"ignores": [
"tests/**"
],
"overrides": [
{
"files": "app/helpers/*.js",
"rules": {
"no-use-extend-native/no-use-extend-native": 0,
"no-extend-native": 0
}
},
{
"files": "app/bot/commands/system/RebootCommand.js",
"rules": {
"unicorn/no-process-exit": 0
}
}
]
},
"dependencies": {
"apiai": "4.0.1",
"discordie": "^0.11.0",
"dot-object": "^1.5.4",
"emoji-strip": "^1.0.1",
"expand-url": "^0.1.3",
"fs-extra": "^2.0.0",
"goo.gl": "^0.1.4",
"knex": "^0.12.7",
"lodash": "^4.17.4",
"moment": "^2.18.1",
"mysql": "^2.13.0",
"node-schedule": "^1.2.0",
"raven": "^2.1.0",
"relevant-urban": "^2.0.0",
"request": "^2.81.0",
"require-directory": "^2.1.1",
"semver-diff": "^2.1.0",
"sqlite3": "^3.1.8",
"winston": "^2.3.1",
"winston-daily-rotate-file": "^1.4.6",
"youtube-dl": "^1.11.1"
},
"devDependencies": {
"minami": "^1.1.1",
"mocha": "^3.2.0",
"sinon": "^2.3.2",
"xo": "^0.18.0"
},
"snyk": true
}