updated devDependencies

This commit is contained in:
Brandon Nozaki Miller 2014-12-09 11:47:29 -08:00
parent f8bbc778e5
commit ebe27f0141
4 changed files with 30 additions and 7 deletions

3
.gitignore vendored
View file

@ -1 +1,2 @@
/nbproject/private/ /nbproject/private/
/node_modules/

24
node_modules/colors/package.json generated vendored
View file

@ -22,8 +22,26 @@
"node": ">=0.1.90" "node": ">=0.1.90"
}, },
"main": "colors", "main": "colors",
"readme": "# colors.js - get color and style in your node.js console ( and browser ) like what\n\n<img src=\"http://i.imgur.com/goJdO.png\" border = \"0\"/>\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", "_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": {}
} }

2
node_modules/node-cmd/package.json generated vendored
View file

@ -34,5 +34,5 @@
"gitHead": "a003426996e8594af31a6486cfb7d28d0a547bc9", "gitHead": "a003426996e8594af31a6486cfb7d28d0a547bc9",
"_id": "node-cmd@1.0.2", "_id": "node-cmd@1.0.2",
"_shasum": "89cdb50181476cdd127763d5c8514499fe3c038d", "_shasum": "89cdb50181476cdd127763d5c8514499fe3c038d",
"_from": "node-cmd@" "_from": "node-cmd@~1.0.1"
} }

View file

@ -1,6 +1,6 @@
{ {
"name": "node-ipc", "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.", "description": "A nodejs module for local and remote Inter Process Communication (IPC), Neural Networking, and able to facilitate machine learning.",
"main": "node-ipc.js", "main": "node-ipc.js",
"directories": { "directories": {
@ -11,7 +11,11 @@
"colors": "~0.6.2", "colors": "~0.6.2",
"node-cmd": "~1.0.1" "node-cmd": "~1.0.1"
}, },
"devDependencies": {}, "devDependencies": {
"colors": "^0.6.2",
"event-pubsub": "^1.0.3",
"node-cmd": "^1.0.2"
},
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },