-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
51 lines (51 loc) · 1.27 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
{
"name": "rcon-srcds",
"version": "2.1.0",
"description": "A zero-dependency Typescript library for the Source/Minecraft RCON Protocol",
"main": "dist/rcon.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src/ --ext .ts",
"build": "tsc",
"prepare": "npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src"
},
"files": [
"dist/**/*"
],
"repository": {
"type": "git",
"url": "git+https://github.com/EnriqCG/rcon-srcds.git"
},
"keywords": [
"rcon",
"client",
"rcon protocol",
"csgo",
"source",
"minecraft",
"typescript",
"zero-dependency",
"promise",
"async"
],
"author": "Enrique Carpintero <coding@enriqcg.io>",
"contributors": [
"Markus Adrario (https://github.com/Taraman17)",
"c43721 (https://github.com/c43721)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/EnriqCG/rcon-srcds/issues"
},
"homepage": "https://github.com/EnriqCG/rcon-srcds",
"devDependencies": {
"@types/node": "^13.13.4",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"typescript": "^3.8.3"
}
}