-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.23 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
{
"name": "gensui",
"version": "1.0.0",
"description": "An opinionated and DRY-oriented Discord bot framework written in TypeScript and works with Discord.js.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepare": "npm run build",
"build": "tsc --build",
"clean": "tsc --build --clean",
"test": "mocha --exit -r ts-node/register 'tests/**/*.ts'",
"coverage": "nyc --reporter=html --reporter=text --reporter=text-summary npm run test"
},
"keywords": [
"discord",
"discord.js",
"discord",
"bot",
"typescript",
"commands",
"commando"
],
"author": "DanielVip3",
"license": "MIT",
"dependencies": {
"@types/ioredis": "^4.17.7",
"@types/redis": "^2.8.28",
"bufferutil": "^4.0.1",
"discord.js": "^12.5.1",
"dotenv": "^8.2.0",
"ioredis": "^4.19.2",
"redis": "^3.0.2",
"utf-8-validate": "^5.0.2"
},
"devDependencies": {
"@types/chai": "^4.2.14",
"@types/chai-as-promised": "^7.1.3",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"ioredis-mock": "^5.2.0",
"mocha": "^8.2.0",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"ts-node": "^9.1.1",
"typescript": "^4.1.3"
}
}