node-gamedig/package.json

55 lines
1.2 KiB
JSON
Raw Normal View History

2014-10-29 08:02:03 +01:00
{
2019-10-15 21:48:42 +02:00
"name": "gamedig",
"description": "Query for the status of any game server in Node.JS",
"tags": [
"srcds",
"query",
"game",
"utility",
"util",
"server"
],
"main": "lib/index.js",
"author": "Michael Morrison",
2019-11-11 10:05:27 +01:00
"version": "2.0.20",
2019-10-15 21:48:42 +02:00
"repository": {
"type": "git",
"url": "https://github.com/sonicsnes/node-gamedig.git"
},
"bugs": {
"url": "https://github.com/sonicsnes/node-gamedig/issues"
},
"license": "MIT",
"engines": {
"node": ">=8.0.0"
},
"dependencies": {
2019-10-15 22:03:11 +02:00
"cheerio": "^1.0.0-rc.3",
2019-10-15 21:48:42 +02:00
"compressjs": "^1.0.2",
2019-10-15 22:03:11 +02:00
"gbxremote": "^0.2.1",
"iconv-lite": "^0.5.0",
"long": "^4.0.0",
2019-10-15 21:48:42 +02:00
"minimist": "^1.2.0",
2019-10-15 22:03:11 +02:00
"moment": "^2.24.0",
2019-10-15 21:48:42 +02:00
"punycode": "^2.1.1",
"request": "^2.88.0",
2019-10-15 22:03:11 +02:00
"request-promise": "^4.2.4",
"varint": "^5.0.0"
2019-10-15 21:48:42 +02:00
},
"bin": {
"gamedig": "bin/gamedig.js"
},
"files": [
"bin/gamedig.js",
"lib/",
"protocols/",
"games.txt",
"LICENSE",
"README.md"
],
"devDependencies": {
2019-10-15 22:03:11 +02:00
"@types/cheerio": "^0.22.13",
"@types/node": "^8.10.54"
2019-10-15 21:48:42 +02:00
}
2014-10-29 08:02:03 +01:00
}