-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.73 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "hello-world-bot",
"version": "1.0.0",
"description": "Hello World Bot",
"main": "src/index.js",
"engines": {
"node": "12.x",
"npm": "*"
},
"scripts": {
"start": "pm2-runtime start src/index.js --name 'Game Night Bot' -i 1",
"dev": "nodemon src/index.js",
"lint": "eslint .",
"pretest": "npm run lint",
"test": "jest"
},
"author": "Dennis Chen",
"repository": {
"type": "git",
"url": "git+https://github.com/dennischen0/game-night-bot.git"
},
"license": "ISC",
"dependencies": {
"@discordjs/opus": "^0.3.2",
"@google-cloud/text-to-speech": "^3.0.1",
"bufferutil": "^4.0.1",
"codecov": "^3.7.1",
"discord.js": "^12.2.0",
"dotenv": "^8.2.0",
"erlpack": "github:discordapp/erlpack",
"husky": "^4.2.5",
"mathjs": "^7.0.2",
"pm2": "^4.4.0",
"rpg-dice-roller": "^4.1.2",
"sodium": "^3.0.2",
"tmp": "^0.2.1",
"utf-8-validate": "^5.0.2",
"zlib-sync": "^0.1.7"
},
"devDependencies": {
"eslint": "^7.4.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.18.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"nodemon": "^2.0.4",
"jest": "^26.1.0"
},
"jest": {
"coverageDirectory": "./coverage/",
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.{js,jsx}",
"!**/node_modules/**",
"!**/coverage/**"
],
"testEnvironment": "node"
},
"bugs": {
"url": "https://github.com/dennischen0/game-night-bot/issues"
},
"homepage": "https://github.com/dennischen0/game-night-bot#readme"
}