From 1b89bc9a76c229070ff2572f7a0e1b969c4b4701 Mon Sep 17 00:00:00 2001 From: Jarrett Cruger Date: Thu, 2 Apr 2015 12:31:17 -0400 Subject: [PATCH] [dist] add semver and normalize package.json with --save-dev --- package.json | 65 +++++++++++++++++++++++++--------------------------- 1 file changed, 31 insertions(+), 34 deletions(-) diff --git a/package.json b/package.json index 9c9ae3822..a1c8d2b3e 100644 --- a/package.json +++ b/package.json @@ -1,47 +1,44 @@ { - "name" : "http-proxy", - "version" : "1.10.0", - - "repository" : { - "type" : "git", - "url" : "https://github.com/nodejitsu/node-http-proxy.git" + "name": "http-proxy", + "version": "1.10.0", + "repository": { + "type": "git", + "url": "https://github.com/nodejitsu/node-http-proxy.git" }, - - "description" : "HTTP proxying for the masses", + "description": "HTTP proxying for the masses", "author": "Nodejitsu Inc. ", - "maintainers" : [ + "maintainers": [ "yawnt ", "indexzero " ], - - "main" : "index.js", - - "dependencies" : { - "eventemitter3" : "0.x.x", - "requires-port" : "0.x.x" + "main": "index.js", + "dependencies": { + "eventemitter3": "0.x.x", + "requires-port": "0.x.x" }, "devDependencies": { - "mocha" : "*", - "expect.js" : "*", - "dox" : "*", - "coveralls" : "*", + "async": "*", + "blanket": "*", + "coveralls": "*", + "dox": "*", + "expect.js": "*", + "mocha": "*", "mocha-lcov-reporter": "*", - "blanket" : "*", - "ws" : "~0.5.0", - "socket.io" : "*", - "socket.io-client" : "*", - "async" : "*" + "semver": "^4.3.3", + "socket.io": "*", + "socket.io-client": "*", + "ws": "~0.5.0" }, - "scripts" : { - "coveralls" : "mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js", - "blanket" : { "pattern": "lib/http-proxy" }, - "test" : "mocha -R landing test/*-test.js", - "test-cov" : "mocha --require blanket -R html-cov > cov/coverage.html" + "scripts": { + "coveralls": "mocha --require blanket --reporter mocha-lcov-reporter | ./node_modules/coveralls/bin/coveralls.js", + "blanket": { + "pattern": "lib/http-proxy" + }, + "test": "mocha -R landing test/*-test.js", + "test-cov": "mocha --require blanket -R html-cov > cov/coverage.html" }, - - "engines" : { - "node" : ">=0.10.0" + "engines": { + "node": ">=0.10.0" }, - - "license" : "MIT" + "license": "MIT" }