Merge pull request #13 from rtyler/bin-package

Instruct NPM to install our binary/scripts as such
This commit is contained in:
R. Tyler Croy 2013-08-27 15:49:49 -07:00
commit 418b3f4130
1 changed files with 5 additions and 1 deletions

View File

@ -1,8 +1,12 @@
{
"name": "activepush",
"version": "1.0.1",
"version": "1.0.2",
"description": "Web push service built around ActiveMQ (or any STOMP broker)",
"main": "activepush.coffee",
"bin": {
"activepush": "./bin/activepush",
"activepush-client-example": "./bin/example-client"
},
"scripts": {
"start": "node_modules/.bin/coffee activepush.coffee",
"test": "node_modules/.bin/mocha --compilers coffee:coffee-script test"