node-minecraft-protocol/package.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2012-12-31 20:33:35 -05:00
{
"name": "minecraft-protocol",
"version": "0.15.0-GH",
2013-01-01 21:02:07 -05:00
"description": "Parse and serialize minecraft packets, plus authentication and encryption.",
"main": "index.js",
2013-01-01 21:51:46 -05:00
"repository": {
"type": "git",
"url": "git://github.com/andrewrk/node-minecraft-protocol.git"
2013-01-01 21:51:46 -05:00
},
2012-12-31 20:33:35 -05:00
"scripts": {
2015-03-08 15:58:32 -04:00
"prepublish": "gulp",
"test": "mocha --require source-map-support/register --reporter spec"
2012-12-31 20:33:35 -05:00
},
"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"
},
2014-01-05 13:52:04 -05:00
"browser": "browser.js",
2013-01-01 21:51:46 -05:00
"devDependencies": {
"batch": "~0.3.1",
2015-02-22 11:27:46 -05:00
"gulp": "^3.8.11",
2015-05-21 16:22:20 -04:00
"gulp-babel": "^5.1.0",
"gulp-plumber": "^1.0.1",
2015-02-22 11:49:29 -05:00
"gulp-sourcemaps": "^1.3.0",
"mkdirp": "~0.3.4",
2015-02-22 11:27:46 -05:00
"mocha": "~1.8.2",
2013-01-07 23:36:14 -05:00
"rimraf": "~2.1.1",
"source-map-support": "^0.3.2",
2015-05-21 16:22:20 -04:00
"zfill": "0.0.1"
2013-01-01 21:51:46 -05:00
},
"dependencies": {
2015-05-21 16:22:20 -04:00
"babel-runtime": "^5.4.4",
2015-02-24 18:45:16 -05:00
"buffer-equal": "0.0.0",
"node-uuid": "~1.4.1",
2015-03-06 13:50:57 -05:00
"prismarine-nbt": "0.0.1",
"readable-stream": "^1.1.0",
"superagent": "~0.10.0",
"ursa-purejs": "0.0.3",
"minecraft-data": "0.7.0"
},
"optionalDependencies": {
"ursa": "~0.8.0"
2013-01-01 21:51:46 -05:00
}
2012-12-31 20:33:35 -05:00
}