diff --git a/package.json b/package.json index 5003ee4..9939660 100644 --- a/package.json +++ b/package.json @@ -2,7 +2,7 @@ "author": "Leonhardt Wille ", "name": "gphoto2", "description": "Node.js wrapper for libgphoto2", - "version": "0.0.6", + "version": "0.1.0alpha1", "homepage": "https://www.riverlabs.de", "repository": { "type": "git", @@ -20,11 +20,13 @@ "underscore": "1.3.x", "jade": "0.26.0", "superagent": "0.4.x", - "mocha": "1.0.x" + "mocha": "1.0.x", + "should": "0.6.x", + "sinon": "1.3.x" }, "scripts": { "preinstall": "make", "prepublish": "make clean", - "test": "killall PTPCamera;coffee --nodejs --expose-gc test/test.coffee" + "test": "mocha test/*.test.coffee" } } diff --git a/wscript b/wscript index c302ba1..45fcdfa 100644 --- a/wscript +++ b/wscript @@ -4,7 +4,7 @@ from os.path import exists, lexists srcdir = "." blddir = "build" -VERSION = "0.0.6" +VERSION = "0.1.0alpha1" def set_options(opt): opt.tool_options("compiler_cxx")