forked from thbaumbach/node-quake3-rcon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1009 Bytes
/
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
{
"name": "quake3-rcon-e",
"version": "1.0.2",
"description": "A tiny library for using Quake 3's RCON server feature with encode, including an command-line interface.",
"homepage": "https://github.com/miguelsotobaez/node-quake3-rcon-e",
"readmeFilename": "README.md",
"scripts": {
"start": "node ./bin/quake3-rcon-e",
"test": "echo no tests yet"
},
"preferGlobal": true,
"bin": {
"quake3-rcon": "bin/quake3-rcon-e"
},
"main": "src/rcon",
"directories": {
"lib": "src"
},
"repository": {
"type": "git",
"url": "https://github.com/miguelsotobaez/node-quake3-rcon-e"
},
"bugs": {
"url": "https://github.com/miguelsotobaez/node-quake3-rcon-e/issues"
},
"dependencies": {
"iconv-lite": "^0.6.0"
},
"keywords": [
"quake",
"quake3",
"q3",
"q3a",
"rcon",
"remote",
"console",
"server",
"network",
"library",
"cli",
"command"
],
"author": "Thomas Baumbach <[email protected]>",
"license": "MIT"
}