forked from levrik/node-modern-rcon
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
38 lines (38 loc) · 810 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
{
"name": "rcon-ts",
"version": "1.2.3",
"description": "A modern RCON client implementation written in TypeScript (targeting ES2015) and is async/await friendly.",
"keywords": [
"rcon",
"async-await",
"typescript",
"minecraft",
"factorio",
"es2015",
"es6"
],
"typings": "rcon.d.ts",
"main": "rcon.js",
"repository": "electricessence/rcon-ts",
"contributors": [
"Levin Ricket <me@levrik.io>",
"electricessence"
],
"license": "MIT",
"devDependencies": {
"@types/node": "^9.6.6",
"async-to-gen": "^1.3.0",
"mkdirp": "^0.5.1",
"mocha": "^3.2.0",
"ncp": "^2.0.0",
"nugget": "^2.0.1",
"rimraf": "^2.5.4",
"typescript": "^2.8.3"
},
"engines": {
"node": ">=6.0.0"
},
"dependencies": {
"tslib": "^1.9.0"
}
}