Skip to content

Commit

Permalink
Merge pull request #101 from yochannah/biojs
Browse files Browse the repository at this point in the history
Biojs support
  • Loading branch information
colin-combe committed May 18, 2016
2 parents 73457dd + 7dfa3ea commit be4fcb6
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 5 deletions.
2 changes: 2 additions & 0 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -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']);
Expand Down
22 changes: 17 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand All @@ -33,12 +34,23 @@
"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",
"deamdify": "^0.1.1",
"debowerify": "^1.3.1",
"intersectionjs": "^1.0.1",
"point2d": "0.0.1"
}
},
"keywords": [
"biojs",
"protein",
"interactions",
"complexes"
],
"main": "index.html"
}

0 comments on commit be4fcb6

Please sign in to comment.