diff --git a/Gruntfile.js b/Gruntfile.js index 5aa8a41..2c44816 100644 --- a/Gruntfile.js +++ b/Gruntfile.js @@ -61,6 +61,8 @@ module.exports = taskManager = function(grunt) { plugin = plugins[_i]; grunt.loadNpmTasks(plugin); } + //todo: note that the 'test' task just returns true right now! Real tests need to be added. + grunt.registerTask('test', function() {return true}); grunt.registerTask('setup', 'browserify'); grunt.registerTask('package', ['browserify', 'uglify']); grunt.registerTask('build', ['browserify']); diff --git a/package.json b/package.json index 329917a..3c36379 100644 --- a/package.json +++ b/package.json @@ -12,15 +12,16 @@ "email": "joshkh@gmail.com" } ], - "license": "Apache v2.0", + "license": "Apache-2.0", "devDependencies": { "grunt": "0.4.x", - "grunt-cli": ">=0.1.6", + "grunt-browserify": "*", + "grunt-cli": "^1.2.0", + "grunt-contrib-jshint": "~0.10.0", "grunt-contrib-uglify": "*", "grunt-contrib-watch": "*", - "grunt-browserify": "*", "grunt-notify": "~0.3.1", - "grunt-contrib-jshint": "~0.10.0" + "wrappy": "^1.0.1" }, "scripts": { "start": "node ./node_modules/grunt-cli/bin/grunt", @@ -33,6 +34,10 @@ "browserify-shim": { "./bower_components/colorbrewer/colorbrewer.js": "colorbrewer" }, + "repository": { + "type": "git", + "url": "git@github.com:MICommunity/interaction-viewer.git" + }, "dependencies": { "browserify": "^10.2.4", "browserify-shim": "^3.8.9", @@ -40,5 +45,12 @@ "debowerify": "^1.3.1", "intersectionjs": "^1.0.1", "point2d": "0.0.1" - } + }, + "keywords": [ + "biojs", + "protein", + "interactions", + "complexes" + ], + "main": "index.html" }