forked from codesupport/discord-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.88 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
{
"name": "discord-bot",
"version": "3.0.0",
"description": "The CodeSupport Discord bot",
"main": "./build/app.js",
"scripts": {
"start": "node -r dotenv/config ./build/index.js",
"build": "tsc",
"dev": "cross-env NODE_ENV=development nodemon --watch src --ext ts --exec 'ts-node -r dotenv/config ./src/index.ts'",
"coverage": "nyc --reporter=lcov --reporter=text-summary npm test",
"test": "ts-mocha test/**/*Test.ts test/**/**/*Test.ts test/appTest.ts --exit",
"test:debug": "ts-mocha test/**/*Test.ts test/**/**/*Test.ts test/appTest.ts --timeout 999999999 --exit",
"lint": "eslint src test --ext .js,.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/codesupport/discord-bot.git"
},
"keywords": [
"codesupport",
"discord",
"bot"
],
"author": "The CodeSupport Community",
"license": "MIT",
"bugs": {
"url": "https://github.com/codesupport/discord-bot/issues"
},
"homepage": "https://github.com/codesupport/discord-bot#readme",
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
},
"dependencies": {
"axios": "^0.21.1",
"axios-cache-adapter": "^2.5.0",
"discord.js": "^13.1.0",
"dotenv": "^8.2.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@lambocreeper/mock-discord.js": "^2.0.1",
"@types/assert": "^1.5.2",
"@types/chai": "^4.2.14",
"@types/mocha": "^7.0.2",
"@types/node": "^13.13.32",
"@types/sinon": "^9.0.8",
"@types/ws": "^7.4.0",
"@typescript-eslint/eslint-plugin": "^4.28.3",
"@typescript-eslint/parser": "^4.28.3",
"chai": "^4.2.0",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-config-codesupport": "^1.0.2",
"mocha": "^7.2.0",
"nodemon": "^2.0.7",
"nyc": "^15.1.0",
"sinon": "^9.2.1",
"ts-mocha": "^7.0.0",
"ts-node": "^9.1.1",
"typescript": "^4.3.5"
}
}