forked from mojira/mojira-discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 933 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
{
"name": "mojira-discord-bot",
"version": "0.0.1",
"description": "A work-in-progress bot used to link to Mojira bug reports directly from Discord.",
"license": "GPL-3.0",
"author": "violine1101",
"contributors": [
"NeunEinser",
"SPGoding"
],
"repository": "https://github.com/mojira/mojira-discord-bot",
"scripts": {
"bot": "ts-node .",
"compile": "tsc --noEmit",
"lint": "eslint **/*.ts",
"lintfix": "eslint **/*.ts --fix",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"discord.js": "^11.5.1",
"jira-connector": "^2.16.1",
"log4js": "^6.1.0",
"moment": "^2.24.0",
"ts-node": "^8.5.4",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/emoji-regex": "^8.0.0",
"@types/node": "^12.12.14",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"eslint": "^6.6.0"
}
}