-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.08 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.08 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
{
"name": "botty-mcbotface",
"description": "A bot for the Riot Games API Discord.",
"repository": {
"url": "git@github.com:Querijn/BottyMcBotface.git",
"type": "git"
},
"scripts": {
"compile": "tsc -p .",
"start": "tsc -p . && node ./dist/app.js",
"test": "mocha -r ts-node/register test/**/*.spec.ts"
},
"author": "Querijn Heijmans <querijn@irule.at>",
"license": "MIT",
"dependencies": {
"bufferutil": "^4.1.0",
"cheerio": "^1.0.0-rc.10",
"crc-32": "^1.2.2",
"discord.js": "^14.26.2",
"fast-xml-parser": "^5.5.7",
"fs-extra": "^11.3.3",
"html2plaintext": "^2.1.4",
"moment": "^2.30.1",
"pretty-ms": "^9.3.0",
"striptags": "^3.2.0",
"typescript": "^5.9.3",
"xregexp": "^5.1.2"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/cheerio": "^0.22.35",
"@types/fs-extra": "^11.0.4",
"@types/pretty-ms": "^4.0.0",
"@types/turndown": "^5.0.6",
"chai": "^4.5.0",
"mocha": "^10.8.2",
"ts-mockito": "^2.6.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.3",
"typemoq": "^2.1.0"
}
}