Skip to content

Commit 5b9b075

Browse files
committed
Bump version and fix package.json to work with latest npm.
1 parent 8396aa3 commit 5b9b075

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

package.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,14 @@
11
{ "name" : "supervisor"
2-
, "version" : "0.0.2"
2+
, "version" : "0.0.3"
33
, "description" : "A supervisor program for running nodejs programs"
44
, "author" : "Isaac Z. Schlueter <i@izs.me>"
5-
, "make" : "./configure && make && sudo make install"
5+
, "scripts" :
6+
{ "preinstall" : "./configure"
7+
, "install" : "make"
8+
, "uninstall" : "make clean"
9+
}
610
, "main" : "lib/supervisor"
11+
, "bin" : { "node-supervisor" : "./build/node-supervisor" }
712
, "engines" : { "node" : ">=0.1.90" }
813
, "directories" : { "lib" : "lib" }
914
}

0 commit comments

Comments
 (0)