-
Notifications
You must be signed in to change notification settings - Fork 78
/
package.json
48 lines (48 loc) · 1.24 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
{
"name": "discord-translator",
"version": "0.3.8",
"description": "Translation bot built using discord.js and Google Translate API.",
"main": "src/bot.js",
"license": "MIT",
"author": {
"name": "Aziz Natour <azizgfx@gmail.com>",
"url": "http://www.aziznatour.com"
},
"keywords": [
"discord",
"discordjs",
"bot",
"translate",
"translator"
],
"repository": {
"type": "git",
"url": "https://github.com/aziznatour/discord-translator.git"
},
"bugs": {
"url": "https://github.com/aziznatour/discord-translator/issues"
},
"dependencies": {
"common-tags": "^1.7.2",
"discord.js": "^11.3.0",
"google-translate-api": "^2.3.0",
"iso-639-1": "^1.3.0",
"seconds-converter": "^1.2.0",
"sqlite3": "^3.1.13",
"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"
},
"scripts": {
"start": "node build/bot",
"build": "gulp build",
"dev": "gulp watch",
"lint": "gulp lint",
"test": "echo \"Error: no test specified\" && exit 1"
}
}