-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
31 lines (31 loc) · 1018 Bytes
/
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
{
"name": "elrond",
"version": "2.3.7",
"description": "Discord bot for looking up cards and card images",
"main": "elrond.js",
"scripts": {
"build": "docker build . -t gcr.io/proven-dryad-240407/discordbot-elrond:$npm_package_version",
"push": "docker push gcr.io/proven-dryad-240407/discordbot-elrond:$npm_package_version",
"deploy": "kubectl set image deployment/discordbot-elrond discordbot-elrond=gcr.io/proven-dryad-240407/discordbot-elrond:$npm_package_version",
"dev": "nodemon elrond.js",
"start": "node elrond.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ronderksen/elrond.git"
},
"keywords": [],
"author": "Ron Derksen",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronderksen/elrond/issues"
},
"homepage": "https://github.com/ronderksen/elrond#readme",
"dependencies": {
"discord.js": "^12.4.1",
"node-fetch": "^2.6.1",
"nodemon": "^2.0.6",
"striptags": "^3.1.1",
"winston": "^3.3.3"
}
}