From ebe27f01413ea14ab6a21f72eb4c698128fde8ef Mon Sep 17 00:00:00 2001 From: Brandon Nozaki Miller Date: Tue, 9 Dec 2014 11:47:29 -0800 Subject: [PATCH] updated devDependencies --- .gitignore | 3 ++- node_modules/colors/package.json | 24 +++++++++++++++++++++--- node_modules/node-cmd/package.json | 2 +- package.json | 8 ++++++-- 4 files changed, 30 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 14bc68c..5ebfb50 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -/nbproject/private/ \ No newline at end of file +/nbproject/private/ +/node_modules/ \ No newline at end of file diff --git a/node_modules/colors/package.json b/node_modules/colors/package.json index b36ae46..00a2f65 100644 --- a/node_modules/colors/package.json +++ b/node_modules/colors/package.json @@ -22,8 +22,26 @@ "node": ">=0.1.90" }, "main": "colors", - "readme": "# colors.js - get color and style in your node.js console ( and browser ) like what\n\n\n\n\n## Installation\n\n npm install colors\n\n## colors and styles!\n\n- bold\n- italic\n- underline\n- inverse\n- yellow\n- cyan\n- white\n- magenta\n- green\n- red\n- grey\n- blue\n- rainbow\n- zebra\n- random\n\n## Usage\n\n``` js\nvar colors = require('./colors');\n\nconsole.log('hello'.green); // outputs green text\nconsole.log('i like cake and pies'.underline.red) // outputs red underlined text\nconsole.log('inverse the color'.inverse); // inverses the color\nconsole.log('OMG Rainbows!'.rainbow); // rainbow (ignores spaces)\n```\n\n# Creating Custom themes\n\n```js\n\nvar colors = require('colors');\n\ncolors.setTheme({\n silly: 'rainbow',\n input: 'grey',\n verbose: 'cyan',\n prompt: 'grey',\n info: 'green',\n data: 'grey',\n help: 'cyan',\n warn: 'yellow',\n debug: 'blue',\n error: 'red'\n});\n\n// outputs red text\nconsole.log(\"this is an error\".error);\n\n// outputs yellow text\nconsole.log(\"this is a warning\".warn);\n```\n\n\n### Contributors \n\nMarak (Marak Squires)\nAlexis Sellier (cloudhead)\nmmalecki (Maciej MaƂecki)\nnicoreed (Nico Reed)\nmorganrallen (Morgan Allen)\nJustinCampbell (Justin Campbell)\nded (Dustin Diaz)\n\n\n#### , Marak Squires , Justin Campbell, Dustin Diaz (@ded)\n", - "readmeFilename": "ReadMe.md", "_id": "colors@0.6.2", - "_from": "colors@" + "dist": { + "shasum": "2423fe6678ac0c5dae8852e5d0e5be08c997abcc", + "tarball": "http://registry.npmjs.org/colors/-/colors-0.6.2.tgz" + }, + "_from": "colors@~0.6.2", + "_npmVersion": "1.2.30", + "_npmUser": { + "name": "marak", + "email": "marak.squires@gmail.com" + }, + "maintainers": [ + { + "name": "marak", + "email": "marak.squires@gmail.com" + } + ], + "directories": {}, + "_shasum": "2423fe6678ac0c5dae8852e5d0e5be08c997abcc", + "_resolved": "https://registry.npmjs.org/colors/-/colors-0.6.2.tgz", + "readme": "ERROR: No README data found!", + "scripts": {} } diff --git a/node_modules/node-cmd/package.json b/node_modules/node-cmd/package.json index 1f2213d..711c3a2 100644 --- a/node_modules/node-cmd/package.json +++ b/node_modules/node-cmd/package.json @@ -34,5 +34,5 @@ "gitHead": "a003426996e8594af31a6486cfb7d28d0a547bc9", "_id": "node-cmd@1.0.2", "_shasum": "89cdb50181476cdd127763d5c8514499fe3c038d", - "_from": "node-cmd@" + "_from": "node-cmd@~1.0.1" } diff --git a/package.json b/package.json index 15fefb5..4f6d726 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "node-ipc", - "version": "1.1.12", + "version": "1.1.13", "description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.", "main": "node-ipc.js", "directories": { @@ -11,7 +11,11 @@ "colors": "~0.6.2", "node-cmd": "~1.0.1" }, - "devDependencies": {}, + "devDependencies": { + "colors": "^0.6.2", + "event-pubsub": "^1.0.3", + "node-cmd": "^1.0.2" + }, "scripts": { "test": "echo \"Error: no test specified\" && exit 1" },