diff --git a/.travis.yml b/.travis.yml index 6ef04eb..dedfc07 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ +sudo: false language: node_js node_js: - - "0.10" -before_script: - - npm install -g grunt-cli + - 'iojs' + - '0.12' + - '0.10' diff --git a/package.json b/package.json index 7e570b3..f9a782d 100644 --- a/package.json +++ b/package.json @@ -1,19 +1,12 @@ { "name": "grunt-contrib-jst", - "description": "Precompile Underscore templates to JST file.", + "description": "Precompile Underscore templates to JST file", "version": "0.7.0-pre", - "homepage": "https://github.com/gruntjs/grunt-contrib-jst", "author": { "name": "Grunt Team", "url": "http://gruntjs.com/" }, - "repository": { - "type": "git", - "url": "git://github.com/gruntjs/grunt-contrib-jst.git" - }, - "bugs": { - "url": "https://github.com/gruntjs/grunt-contrib-jst/issues" - }, + "repository": "gruntjs/grunt-contrib-jst", "licenses": [ { "type": "MIT", @@ -21,30 +14,30 @@ } ], "engines": { - "node": ">= 0.10.0" + "node": ">=0.10.0" }, "scripts": { "test": "grunt test" }, "dependencies": { - "lodash": "~2.4.1", - "chalk": "~0.5.0" + "chalk": "^0.5.1", + "lodash": "^2.4.1" }, "devDependencies": { - "grunt-contrib-jshint": "~0.10.0", - "grunt-contrib-nodeunit": "~0.4.1", - "grunt-contrib-clean": "~0.5.0", - "grunt-contrib-internal": "~0.4.5", - "grunt": "~0.4.2" + "grunt": "^0.4.5", + "grunt-cli": "^0.1.13", + "grunt-contrib-clean": "^0.5.0", + "grunt-contrib-internal": "^0.4.5", + "grunt-contrib-jshint": "^0.10.0", + "grunt-contrib-nodeunit": "^0.4.1" }, "peerDependencies": { - "grunt": "~0.4.0" + "grunt": ">=0.4.0" }, "keywords": [ "gruntplugin" ], "files": [ - "tasks", - "LICENSE-MIT" + "tasks" ] }