From dc2aa5222c425f34fb1fdc8be4c8199f99e4723c Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Tue, 1 Jan 2013 21:51:46 -0500 Subject: [PATCH] update package.json --- package.json | 24 +++++++++++++++++++++++- 1 file changed, 23 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 4e249fc..ef770ad 100644 --- a/package.json +++ b/package.json @@ -3,13 +3,35 @@ "version": "0.0.0", "description": "Parse and serialize minecraft packets, plus authentication and encryption.", "main": "index.js", + "repository": { + "type": "git", + "url": "git://github.com/superjoe30/node-minecraft-protocol.git" + }, "scripts": { "test": "mocha" }, "keywords": [ "minecraft", - "protocol" + "protocol", + "parse", + "serialize", + "packet", + "authentication", + "encrypton", + "bot" ], "author": "Andrew Kelley", "license": "BSD", + "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" + } }