-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.22 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
{
"name": "bancho.js",
"version": "0.12.0",
"description": "Interface with Bancho over IRC, made easy and reliable",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"lint": "eslint .",
"test": "time node tests/run.js",
"doc": "jsdoc -c ./jsdoc.conf.json -u tutorials/ -t ./node_modules/ink-docstrap/template -R README.md -r index.js lib/",
"doc:dev": "jsdoc -c ./jsdoc.conf.json -u tutorials/ -t ./node_modules/ink-docstrap/template -R README.md -r -p index.js lib/"
},
"repository": {
"type": "git",
"url": "https://git.cartooncraft.fr/ThePooN/bancho.js.git"
},
"keywords": [
"bancho",
"osu",
"irc"
],
"author": "ThePooN",
"license": "GPL-3.0",
"engines": {
"node": ">=8"
},
"devDependencies": {
"@types/node": "^14.14.31",
"chalk": "^4.1.0",
"eslint": "^7.21.0",
"eslint-plugin-node": "^11.1.0",
"ink-docstrap": "^1.3.2",
"jsdoc": "^3.6.6",
"log-symbols": "^4.0.0",
"weak-value-map": "^1.0.1"
},
"dependencies": {
"nodesu": "^0.7.2",
"rate-limiter-flexible": "^2.3.12"
},
"peerDependencies": {
"weak-value-map": "^1.0.1"
},
"peerDependenciesMeta": {
"weak-value-map": {
"optional": true
}
}
}