From 092f8dbf804fc55fea3f303150abc7ecb047756f Mon Sep 17 00:00:00 2001 From: Andrey Sidorov Date: Thu, 31 Oct 2013 09:20:47 +1100 Subject: [PATCH] 0.3.1 --- package.json | 60 ++++++++++++++++++++++++++++++++++------------------ 1 file changed, 40 insertions(+), 20 deletions(-) diff --git a/package.json b/package.json index c784b73..534285e 100644 --- a/package.json +++ b/package.json @@ -1,29 +1,49 @@ -{ "name" : "x11" -, "author": "Andrey Sidorov " -, "description": "A pure node.js JavaScript client implementing X Window (X11) protocol and extensions." -, "keywords": ["X Window", "ui", "gui", "widgets", "desktop", "XWindow", "X"] -, "homepage": "https://github.com/sidorares/node-x11" -, "version" : "0.3.0" -, "maintainers" : - [ { "name": "Andrey Sidorov" - , "email": "sidoares@yandex.ru" +{ + "name": "x11", + "author": "Andrey Sidorov ", + "description": "A pure node.js JavaScript client implementing X Window (X11) protocol and extensions.", + "keywords": [ + "X Window", + "ui", + "gui", + "widgets", + "desktop", + "XWindow", + "X" + ], + "homepage": "https://github.com/sidorares/node-x11", + "version": "0.3.1", + "maintainers": [ + { + "name": "Andrey Sidorov", + "email": "sidoares@yandex.ru" } - ] -, "bugs" : { "url" : "http://github.com/sidorares/node-x11/issues" } -, "licenses" : [ { "type" : "MIT" } ] -, "repository" : { "type" : "git", "url" : "http://github.com/sidorares/node-x11.git" } - -, "main" : "./lib" -, "engines" : { "node" : "*" } -, "devDependencies": { + ], + "bugs": { + "url": "http://github.com/sidorares/node-x11/issues" + }, + "licenses": [ + { + "type": "MIT" + } + ], + "repository": { + "type": "git", + "url": "http://github.com/sidorares/node-x11.git" + }, + "main": "./lib", + "engines": { + "node": "*" + }, + "devDependencies": { "mocha": "*", "should": "*", "sax": "*", "async": "*", "sinon": "*" - } -, "scripts": { + }, + "scripts": { "test": "node test-runner.js", - "prepublish" : "npm prune" + "prepublish": "npm prune" } }