From a703ec17a4e623aa2a5b3ea9edda3905777ec198 Mon Sep 17 00:00:00 2001 From: isaacs Date: Tue, 10 Aug 2010 12:59:14 -0700 Subject: [PATCH] specify the version of node that works, and fix non-unix linebreaks. --- package.json | 74 ++++++++++++++++++++++++++-------------------------- 1 file changed, 37 insertions(+), 37 deletions(-) diff --git a/package.json b/package.json index edbed2b..c279bee 100644 --- a/package.json +++ b/package.json @@ -1,37 +1,37 @@ -{ - "name": "node-proxy", - "version": "0.2.2", - "description": "A module for node implementing part of the Harmony Catch-All Proxies specification found at http://wiki.ecmascript.org/doku.php?id=harmony:proxies", - "keywords": [ - "interceptor", - "proxy", - "overload", - "__noSuchMethod__" - ], - "contributors": [ "Sam Shull " ], - "licenses": [ - { - "type": "MIT", - "url": "http://www.opensource.org/licenses/mit-license.html" - } - ], - "bugs":{ - "web":"http://github.com/brickysam26/node-proxy/issues" - }, - "implements": [ - "http://wiki.ecmascript.org/doku.php?id=harmony:proxies" - ], - "engines": [ - "node" - ], - "repositories": [ - { - "type": "git", - "url": "http://github.com/brickysam26/node-proxy" - } - ], - "main": "./lib/node-proxy.node", - "scripts":{ - "install":"make" - } -} +{ + "name": "node-proxy", + "version": "0.2.2", + "description": "A module for node implementing part of the Harmony Catch-All Proxies specification found at http://wiki.ecmascript.org/doku.php?id=harmony:proxies", + "keywords": [ + "interceptor", + "proxy", + "overload", + "__noSuchMethod__" + ], + "contributors": [ "Sam Shull " ], + "licenses": [ + { + "type": "MIT", + "url": "http://www.opensource.org/licenses/mit-license.html" + } + ], + "bugs":{ + "web":"http://github.com/brickysam26/node-proxy/issues" + }, + "implements": [ + "http://wiki.ecmascript.org/doku.php?id=harmony:proxies" + ], + "engines": { + "node" : ">=0.1.103" + }, + "repositories": [ + { + "type": "git", + "url": "http://github.com/brickysam26/node-proxy" + } + ], + "main": "./lib/node-proxy.node", + "scripts":{ + "install":"make" + } +}