-
Notifications
You must be signed in to change notification settings - Fork 143
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #77 from jdforrester/master
Release 1.0.3
- Loading branch information
Showing
13 changed files
with
480 additions
and
459 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
{ | ||
"preset": "wikimedia" | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,24 @@ | ||
{ | ||
"predef": [ | ||
"jQuery", | ||
"QUnit", | ||
"_" | ||
], | ||
|
||
"camelcase": true, | ||
"curly": true, | ||
// Enforcing | ||
"bitwise": true, | ||
"eqeqeq": true, | ||
"immed": true, | ||
"latedef": true, | ||
"newcap": true, | ||
"noarg": true, | ||
"noempty": true, | ||
"nonew": true, | ||
"plusplus": false, | ||
"quotmark": "single", | ||
"undef": true, | ||
"unused": true, | ||
"strict": true, | ||
"trailing": true, | ||
"strict": false, | ||
|
||
// Relaxing | ||
"es5": false, | ||
"freeze": false, | ||
|
||
// Environment | ||
"browser": true, | ||
"jquery": true, | ||
|
||
"nomen": true, | ||
"onevar": true, | ||
"white": false | ||
"globals": { | ||
"QUnit": false, | ||
"_": false | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,5 +6,4 @@ Amir E. Aharoni | |
Siebrand Mazeland | ||
Niklas Laxström | ||
Neil Kandalgaonkar | ||
|
||
|
||
David Chan |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "jquery.i18n", | ||
"version": "1.0.2", | ||
"version": "1.0.3", | ||
"description": "jQuery based internationalization library", | ||
"homepage": "https://github.com/wikimedia/jquery.i18n", | ||
"keywords": [ | ||
|
@@ -17,16 +17,18 @@ | |
"contributors": [ | ||
"Amir Aharoni <[email protected]>", | ||
"Niklas Laxström <[email protected]>", | ||
"Neil Kandalgaonkar <[email protected]>" | ||
"Neil Kandalgaonkar <[email protected]>", | ||
"David Chan <[email protected]>" | ||
], | ||
"devDependencies": { | ||
"qunit": "0.7.4", | ||
"qunit": "0.7.6", | ||
"grunt": "0.4.5", | ||
"grunt-cli": "0.1.13", | ||
"grunt-contrib-jshint": "0.10.0", | ||
"grunt-contrib-connect": "0.8.0", | ||
"grunt-contrib-qunit": "0.5.2", | ||
"grunt-contrib-watch": "0.5.1" | ||
"grunt-contrib-jshint": "0.11.2", | ||
"grunt-contrib-connect": "0.10.1", | ||
"grunt-contrib-qunit": "0.7.0", | ||
"grunt-contrib-watch": "0.6.1", | ||
"grunt-jscs": "1.8.0" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
|
@@ -38,16 +40,7 @@ | |
"engine": { | ||
"node": ">=0.8.x" | ||
}, | ||
"licenses": [ | ||
{ | ||
"type": "GPL", | ||
"url": "https://github.com/wikimedia/jquery.i18n/blob/master/GPL-LICENSE" | ||
}, | ||
{ | ||
"type": "MIT", | ||
"url": "https://github.com/wikimedia/jquery.i18n/blob/master/MIT-LICENSE" | ||
} | ||
], | ||
"license": "(MIT OR GPL-2.0)", | ||
"scripts": { | ||
"test": "grunt test --verbose" | ||
} | ||
|
Oops, something went wrong.