Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
sudo: false
language: node_js
node_js:
- "0.11"
- "4"
before_script:
- npm install -g grunt-cli
- npm install -g grunt-cli
25 changes: 20 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -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"
}
}