diff --git a/package.json b/package.json index 27405b6..f98fa34 100644 --- a/package.json +++ b/package.json @@ -1,26 +1,41 @@ { - "name": "up" - , "description": "Zero downtime reloads for Node HTTP(S) servers." - , "tags": ["cluster", "reload", "process", "monitor", "graceful", "restart"] - , "homepage": "https://github.com/learnboost/up" - , "version": "0.2.1" - , "bin": { "up": "./bin/up" } - , "main": "./lib/up" - , "engines": { "node": ">= 0.6.0" } - , "dependencies": { - "eq": "0.1.0" - , "ms": "0.1.0" - , "debug": "0.1.0" - , "commander": "0.6.1" - , "distribute": "0.1.4" - } - , "devDependencies": { - "mocha": "*" - , "expect.js": "*" - , "express": "*" - , "superagent": "*" - } - , "scripts": { + "name": "up", + "description": "Zero downtime reloads for Node HTTP(S) servers.", + "tags": [ + "cluster", + "reload", + "process", + "monitor", + "graceful", + "restart" + ], + "homepage": "https://github.com/learnboost/up", + "version": "0.2.1", + "bin": { + "up": "./bin/up" + }, + "main": "./lib/up", + "engines": { + "node": ">= 0.6.0" + }, + "dependencies": { + "eq": "0.1.0", + "ms": "0.1.0", + "debug": "0.1.0", + "commander": "0.6.1", + "distribute": "0.1.4" + }, + "devDependencies": { + "mocha": "*", + "expect.js": "*", + "express": "*", + "superagent": "*" + }, + "scripts": { "test": "./node_modules/mocha/bin/mocha test/*.test.js" + }, + "repository": { + "type": "git", + "url": "https://github.com/LearnBoost/up.git" } }