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.json20
1 files changed, 13 insertions, 7 deletions
diff --git a/js/vendor/es6-shim/package.json b/js/vendor/es6-shim/package.json
index 135c0e758..2e7630d2f 100644
--- a/js/vendor/es6-shim/package.json
+++ b/js/vendor/es6-shim/package.json
@@ -1,6 +1,6 @@
{
"name": "es6-shim",
- "version": "0.33.8",
+ "version": "0.33.12",
"author": "Paul Miller (http://paulmillr.com)",
"description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
"keywords": [
@@ -23,13 +23,17 @@
},
"main": "es6-shim",
"scripts": {
- "test": "npm run lint && evalmd *.md && npm run test-shim && npm run test-sham",
+ "test": "npm run lint && evalmd *.md && npm run tests-only",
+ "tests-only": "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": "npm run jshint-shim && npm run jscs-shim",
- "lint-sham": "npm run jshint-sham && npm run jscs-sham",
+ "lint-shim": "npm run jshint-shim && npm run jscs-shim && npm run eslint-shim",
+ "lint-sham": "npm run jshint-sham && npm run jscs-sham && npm run eslint-sham",
+ "eslint": "npm run eslint-shim && npm run eslint-sham",
+ "eslint-shim": "eslint es6-shim.js test/*.js test/*/*.js",
+ "eslint-sham": "eslint es6-sham.js test-sham/*.js",
"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",
@@ -63,13 +67,15 @@
},
"dependencies": {},
"devDependencies": {
- "chai": "^3.4.0",
- "es5-shim": "^4.1.15",
+ "chai": "^3.4.1",
+ "es5-shim": "^4.3.1",
+ "eslint": "^1.9.0",
+ "@ljharb/eslint-config": "^1.6.0",
"grunt": "^0.4.5",
"grunt-contrib-connect": "^0.11.2",
"grunt-contrib-watch": "^0.6.1",
"grunt-saucelabs": "^8.6.1",
- "jscs": "^2.3.5",
+ "jscs": "^2.5.1",
"jshint": "^2.8.0",
"mocha": "^2.3.3",
"promises-aplus-tests": "^2.1.1",