forked from Nestor/discord-translator
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
60 lines (60 loc) · 1.41 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
{
"name": "louie",
"version": "0.5.3",
"engines": {
"node": "6.14.4"
},
"description": "Translation bot built using discord.js and Google Translate API.",
"main": "src/bot.js",
"license": "MIT",
"scripts": {
"start": "node build/bot",
"build": "gulp build",
"dev": "gulp watch",
"lint": "gulp lint",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name": "Bobby Johnson <bobby.johnson@gmail.com>",
"url": "http://iamnotmyself.com"
},
"contributors": [
{
"name": "Aziz Natour <azizgfx@gmail.com>",
"url": "http://www.aziznatour.com"
}
],
"keywords": [
"discord",
"discordjs",
"bot",
"translate",
"translator"
],
"repository": {
"type": "git",
"url": "https://github.com/NotMyself/Louie.git"
},
"bugs": {
"url": "https://github.com/NotMyself/Louie/issues"
},
"dependencies": {
"common-tags": "^1.7.2",
"discord.js": "^11.3.0",
"dotenv": "^5.0.1",
"google-translate-api": "AlooAkbar/google-translate-api",
"iso-639-1": "^1.3.0",
"pg": "^7.7.1",
"pg-hstore": "^2.3.2",
"seconds-converter": "AlooAkbar/seconds-converter",
"sequelize": "^4.41.2",
"webhook-discord": "^2.0.6"
},
"devDependencies": {
"gulp": "^3.9.1",
"gulp-eslint": "^4.0.0",
"gulp-line-ending-corrector": "^1.0.1",
"gulp-uglify-es": "^0.1.3",
"gulp-watch": "^4.3.11"
}
}