Skip to content

Commit

Permalink
Merge pull request #6 from larzconwell/add-cmd
Browse files Browse the repository at this point in the history
Closes #3, Include a binary to run
  • Loading branch information
mde committed Sep 16, 2014
2 parents 187f3f9 + 2f0f895 commit da33c44
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 4 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@
"version": "0.0.2",
"description": "A JavaScript port of the Unix utility 'true'. Returns the Boolean value `true`",
"main": "index.js",
"bin": {
"true": "true.js"
},
"scripts": {
"test": "jake test"
},
Expand All @@ -27,4 +30,4 @@
"devDependencies": {
"jake": "0.7.x"
}
}
}
3 changes: 3 additions & 0 deletions true.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/usr/bin/env node

return 0;

0 comments on commit da33c44

Please sign in to comment.