-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
44 lines (44 loc) · 1.03 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
{
"name": "bot-azure",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"dev": "nodemon src/index.js",
"test": "TEST_REPORT_FILENAME=TEST-JEST.xml jest",
"build": "sucrase ./src -d ./dist --transforms imports"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CollabCodeTech/bot-azure.git"
},
"keywords": [
"bot",
"discord",
"discord.js",
"azure"
],
"author": "CollabCode",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/CollabCodeTech/bot-azure/issues"
},
"homepage": "https://github.com/CollabCodeTech/bot-azure#readme",
"dependencies": {
"discord.js": "^11.5.1",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@sucrase/jest-plugin": "^2.0.0",
"jest": "^24.9.0",
"jest-junit-reporter": "^1.1.0",
"nodemon": "^2.0.1",
"sucrase": "^3.10.1"
},
"jest": {
"transform": {
".(js|jsx|ts|tsx)": "@sucrase/jest-plugin"
},
"testResultsProcessor": "./node_modules/jest-junit-reporter"
}
}