diff --git a/.travis.yml b/.travis.yml index b7d3fc7..6ca3727 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,5 +1,6 @@ +sudo: false language: node_js node_js: - - "0.11" + - "4" before_script: - - npm install -g grunt-cli \ No newline at end of file + - npm install -g grunt-cli diff --git a/package.json b/package.json index ccbe2a6..7dfa06c 100644 --- a/package.json +++ b/package.json @@ -1,18 +1,33 @@ { "name": "jquery-localize", - "version": "0.0.0-ignored", + "description": "A jQuery plugin that makes it easy to i18n your static web site.", + "version": "0.1.0", + "homepage": "https://github.com/coderifous/jquery-localize", + "license": "MIT", + "main": "dist/jquery.localize.js", + "author": { + "name": "coderifous", + "email": "jim@thegarvin.com" + }, + "repository": { + "type": "git", + "url": "https://github.com/coderifous/jquery-localize.git" + }, + "bugs": "https://github.com/coderifous/jquery-localize/issues", "engines": { "node": ">= 0.8.0" }, "scripts": { + "prepublish": "grunt", "test": "grunt test" }, "devDependencies": { - "grunt-contrib-qunit": "~0.2.0", - "grunt-contrib-uglify": "~0.2.0", - "grunt-contrib-clean": "~0.4.0", "grunt": "~0.4.2", + "grunt-cli": "^0.1.13", + "grunt-contrib-clean": "~0.4.0", "grunt-contrib-coffee": "~0.10.0", - "grunt-contrib-connect": "~0.6.0" + "grunt-contrib-connect": "~0.6.0", + "grunt-contrib-qunit": "~0.2.0", + "grunt-contrib-uglify": "~0.2.0" } }