This repository was archived by the owner on Jul 24, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.52 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.52 KB
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": "shermanmodbot",
"version": "1.1.0",
"description": "The Discord bot for ShermanZero's server",
"main": "index.js",
"dependencies": {
"colors": "^1.4.0",
"discord.js": "github:discordjs/discord.js",
"inversify": "^5.0.1",
"ncp": "^2.0.0",
"node-fetch": "^2.6.0",
"rimraf": "^3.0.0",
"twitch": "^3.5.6",
"twitch-chat-client": "^3.6.0",
"twitch-pubsub-client": "^3.5.9",
"twitch-webhooks": "^3.5.6",
"typescript": "^3.7.2"
},
"devDependencies": {
"@types/ncp": "^2.0.3",
"@types/node": "^12.12.14",
"@types/node-fetch": "^2.5.4",
"@types/rimraf": "^2.0.3",
"nodemon": "^2.0.1",
"types": "github:discordjs/discord.js"
},
"scripts": {
"clean": "rimraf build/ && npm run copy",
"watch": "tsc -p . -w",
"start": "tsc -p . && nodemon ./build/index.js && npm run stop",
"start--v": "tsc -p . && nodemon ./build/index.js --verbose && npm run stop",
"dev": "tsc -p . && node ./build/index.js --dev && npm run stop",
"dev--v": "tsc -p . && node ./build/index.js --dev --verbose && npm run stop",
"copy": "npm run copy-files",
"copy-files": "copyfiles -u 1 src/shared/resources/**.txt build/",
"stop": "killall node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ShermanZero/ShermanModBot.git"
},
"author": "Kieran Sherman",
"license": "ISC",
"bugs": {
"url": "https://github.com/ShermanZero/ShermanModBot/issues"
},
"homepage": "https://github.com/ShermanZero/ShermanModBot#readme"
}