-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.21 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": "botchii",
"version": "1.0.0",
"description": "A bot to forward discord messages to other channels after voting.",
"main": "build/index.js",
"scripts": {
"start": "npm run build && echo \"-- starting bot... --\" && node .",
"start:full": "npm run setup -- -y && npm ci && npm start",
"start:ts": "ts-node source/",
"build": "echo \"-- compiling... --\" && tsc && echo \"-- finished compilation --\"",
"test": "mocha --extension spec.ts --require ts-node/register --recursive .tests/",
"setup": "node setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kintrix007/botchii.git"
},
"author": "kintrix",
"license": "MIT",
"bugs": {
"url": "https://github.com/kintrix007/botchii/issues"
},
"homepage": "https://github.com/kintrix007/botchii#readme",
"dependencies": {
"discord.js": "^12.5.2"
},
"devDependencies": {
"@types/chai": "^4.2.18",
"@types/mocha": "^8.2.2",
"@types/node": "^14.14.31",
"@types/ws": "^7.4.0",
"chai": "^4.3.4",
"mocha": "^9.0.1",
"ts-node": "^10.0.0",
"typescript": "^4.3.2"
},
"files": [
"build",
"images",
"package.json",
"package-lock.json",
"setup.js"
]
}