Skip to content

Commit

Permalink
Updated version number
Browse files Browse the repository at this point in the history
  • Loading branch information
billyzkid committed Dec 8, 2012
1 parent 1635ad3 commit 4f61eef
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 31 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Original file line Diff line number Diff line change
@@ -1,6 +1,6 @@
# nodebug # nodebug


This is a command-line utility that simplifies the process of debugging [node](https://github.com/joyent/node) scripts using [node-inspector](https://github.com/dannycoates/node-inspector). This is a node command line utility that simplifies the process of debugging [node](https://github.com/joyent/node) scripts using [node-inspector](https://github.com/dannycoates/node-inspector).


## Installation ## Installation


Expand All @@ -10,11 +10,11 @@ This is a command-line utility that simplifies the process of debugging [node](h


To debug a typical script: To debug a typical script:


nodebug "lib\module.js" nodebug module.js


To debug unit tests: To debug unit tests (assuming [nodeunit](https://github.com/caolan/nodeunit) is installed):


nodebug "node_modules\nodeunit\bin\nodeunit" "test\module.js" nodebug node_modules/nodeunit/bin/nodeunit test/module.js


## What it does ## What it does


Expand Down
54 changes: 27 additions & 27 deletions package.json
Original file line number Original file line Diff line number Diff line change
@@ -1,27 +1,27 @@
{ {
"name": "nodebug", "name": "nodebug",
"description": "Command-line utility that simplifies node debugging", "description": "Command line utility that simplifies node debugging",
"keywords": ["debug", "debugger", "debugging", "node", "inspector", "node-inspector", "chrome"], "keywords": ["debug", "debugger", "debugging", "node", "inspector", "node-inspector", "chrome", "windows", "mac", "macos", "linux", "unix", "command line", "utility"],
"author": "Will Allan <billyzkid@yahoo.com>", "author": "Will Allan <billyzkid@yahoo.com>",
"version": "0.1.3", "version": "0.1.5",
"preferGlobal": true, "preferGlobal": true,
"licenses": [{ "licenses": [{
"type": "MIT", "type": "MIT",
"url": "https://raw.github.com/billyzkid/nodebug/master/LICENSE" "url": "https://raw.github.com/billyzkid/nodebug/master/LICENSE"
}], }],
"bin": { "bin": {
"nodebug": "./bin/nodebug.js" "nodebug": "./bin/nodebug.js"
}, },
"dependencies": { "dependencies": {
"node-inspector": ">=0.1.10", "node-inspector": ">=0.1.10",
"optimist": "0.3.x" "optimist": "0.3.x"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/billyzkid/nodebug.git" "url": "https://github.com/billyzkid/nodebug.git"
}, },
"engines": { "engines": {
"node": ">=0.8.0" "node": ">=0.8.0"
}, },
"bugs": "https://github.com/billyzkid/nodebug/issues" "bugs": "https://github.com/billyzkid/nodebug/issues"
} }

0 comments on commit 4f61eef

Please sign in to comment.