summaryrefslogtreecommitdiffstats
path: root/js/vendor/es6-shim/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'js/vendor/es6-shim/package.json')
-rw-r--r--js/vendor/es6-shim/package.json55
1 files changed, 32 insertions, 23 deletions
diff --git a/js/vendor/es6-shim/package.json b/js/vendor/es6-shim/package.json
index 22134584c..01c52596b 100644
--- a/js/vendor/es6-shim/package.json
+++ b/js/vendor/es6-shim/package.json
@@ -1,7 +1,7 @@
{
- "author": "Paul Miller (http://paulmillr.com)",
"name": "es6-shim",
- "version": "0.18.0",
+ "version": "0.23.0",
+ "author": "Paul Miller (http://paulmillr.com)",
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
"keywords": [
"ecmascript",
@@ -23,13 +23,19 @@
},
"main": "es6-shim",
"scripts": {
- "test": "npm run test-shim && npm run test-sham",
+ "test": "npm run lint && npm run test-shim && npm run test-sham",
+ "test-shim": "mocha test/*.js test/*/*.js",
+ "test-sham": "mocha test-sham/*.js",
+ "test-native": "npm run jshint-shim && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js",
"lint": "npm run lint-shim && npm run lint-sham",
- "lint-shim": "jshint es6-shim.js",
- "lint-sham": "jshint es6-sham.js",
- "test-shim": "npm run lint-shim && mocha test/*.js test/*/*.js",
- "test-sham": "npm run lint-sham && mocha test-sham/*.js",
- "test-native": "jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js",
+ "lint-shim": "npm run jshint-shim && npm run jscs-shim",
+ "lint-sham": "npm run jshint-sham && npm run jscs-sham",
+ "jshint": "npm run jshint-shim && npm run jshint-sham",
+ "jshint-shim": "jshint es6-shim.js test/*.js test/*/*.js",
+ "jshint-sham": "jshint es6-sham.js test-sham/*.js",
+ "jscs": "npm run jscs-shim && npm run jscs-sham",
+ "jscs-shim": "jscs es6-shim.js test/*.js test/*/*.js",
+ "jscs-sham": "jscs es6-sham.js test-sham/*.js",
"minify": "npm run minify-shim && npm run minify-sham",
"minify-shim": "uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js",
"minify-sham": "uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js",
@@ -38,32 +44,35 @@
"testling": {
"html": "testling.html",
"browsers": [
- "iexplore/9.0..latest",
+ "iexplore/6.0..latest",
+ "firefox/3.0..6.0",
"firefox/10.0",
- "firefox/17.0",
- "firefox/22.0..latest",
+ "firefox/15.0..latest",
"firefox/nightly",
- "chrome/25.0..latest",
+ "chrome/4.0..10.0",
+ "chrome/20.0..latest",
"chrome/canary",
- "safari/5.0.5..latest",
+ "opera/10.0..latest",
+ "opera/next",
+ "safari/4.0..latest",
"ipad/6.0..latest",
"iphone/6.0..latest",
- "opera/12.0..latest",
"android-browser/4.2..latest"
]
},
"dependencies": {},
"devDependencies": {
- "chai": "~1.9.1",
- "es5-shim": "~4.0.3",
+ "chai": "~1.10.0",
+ "es5-shim": "~4.0.5",
"grunt": "~0.4.5",
- "grunt-contrib-connect": "~0.1.2",
- "grunt-contrib-watch": "~0.2.0",
- "grunt-saucelabs": "~8.3.1",
- "jshint": "~2.5.5",
- "mocha": "~1.21.4",
- "promises-aplus-tests": "~2.0.5",
+ "grunt-contrib-connect": "~0.9.0",
+ "grunt-contrib-watch": "~0.6.1",
+ "grunt-saucelabs": "~8.5.0",
+ "jscs": "~1.10.0",
+ "jshint": "~2.6.0",
+ "mocha": "~2.1.0",
+ "promises-aplus-tests": "~2.1.0",
"promises-es6-tests": "~0.5.0",
- "uglify-js": "~2.4.15"
+ "uglify-js": "~2.4.16"
}
}