node-minecraft-protocol/package.json

39 lines
769 B
JSON
Raw Normal View History

2012-12-31 20:33:35 -05:00
{
"name": "minecraft-protocol",
2013-01-01 23:40:25 -05:00
"version": "0.0.1",
2013-01-01 21:02:07 -05:00
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
2012-12-31 20:33:35 -05:00
"main": "index.js",
2013-01-01 21:51:46 -05:00
"repository": {
"type": "git",
"url": "git://github.com/superjoe30/node-minecraft-protocol.git"
},
2012-12-31 20:33:35 -05:00
"scripts": {
"test": "mocha"
},
"keywords": [
"minecraft",
2013-01-01 21:51:46 -05:00
"protocol",
"parse",
"serialize",
"packet",
"authentication",
"encrypton",
"bot"
2012-12-31 20:33:35 -05:00
],
"author": "Andrew Kelley",
"license": "BSD",
2013-01-01 21:51:46 -05:00
"engines": {
"node": ">=0.8.16"
},
"devDependencies": {
"mocha": "~1.7.4"
},
"dependencies": {
"ursa": "~0.8.0",
"buffer-more-ints": "~0.0.1",
"superagent": "~0.10.0",
"iconv": "~1.2.4",
"batch": "~0.2.1"
2013-01-01 21:51:46 -05:00
}
2012-12-31 20:33:35 -05:00
}