forked from CaptainFact/captainfact-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 978 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
32
33
34
35
36
37
38
39
{
"name": "captainfact-discord-bot",
"version": "0.1.0",
"description": "A bot for CaptainFact Discord on https://discord.gg/2Qd7hMz",
"repository": "https://github.com/CaptainFact/captainfact-discord-bot",
"main": "dist/index.js",
"scripts": {
"test": "jest",
"dev": "nodemon",
"build": "rm -rf dist && tsc -p .",
"start": "node dist/index.js",
"lint": "tslint './src/**/*.ts'"
},
"keywords": [
"discord",
"captainfact",
"captain-fact"
],
"author": "Benjamin Piouffle",
"license": "AGPL-3.0-or-later",
"devDependencies": {
"nodemon": "^1.18.5",
"ts-node": "^7.0.1",
"tslint": "^5.11.0",
"dotenv": "^6.1.0"
},
"dependencies": {
"@types/node": "^10.12.1",
"@types/string-template": "^1.0.2",
"discord.js": "^11.4.2",
"string-template": "^1.0.0",
"typescript": "^3.1.4"
},
"jest": {
"clearMocks": true,
"coverageDirectory": "coverage",
"testEnvironment": "node"
}
}