Update bower dependencies.

This commit is contained in:
baldo 2019-03-29 22:00:08 +01:00
commit 2beab45f32
185 changed files with 21480 additions and 8110 deletions

View file

@ -1,6 +1,6 @@
{
"name": "es5-shim",
"version": "4.5.9",
"version": "4.5.12",
"description": "ECMAScript 5 compatibility shims for legacy JavaScript engines",
"homepage": "http://github.com/es-shims/es5-shim/",
"contributors": [
@ -22,26 +22,26 @@
"url": "http://github.com/es-shims/es5-shim.git"
},
"scripts": {
"minify": "concurrently --raw 'npm run --silent minify-shim' 'npm run --silent minify-sham'",
"minify-shim": "uglifyjs es5-shim.js --keep-fnames --comments --source-map=es5-shim.map -m -b ascii_only=true,beautify=false > es5-shim.min.js",
"minify-sham": "uglifyjs es5-sham.js --keep-fnames --comments --source-map=es5-sham.map -m -b ascii_only=true,beautify=false > es5-sham.min.js",
"prepublish": "npm run minify",
"minify": "npm run --silent minify-shim && npm run --silent minify-sham",
"minify-shim": "uglifyjs es5-shim.js --support-ie8 --keep-fnames --comments --source-map=es5-shim.map -m -b ascii_only=true,beautify=false | sed 's/0xde0b6b3a7640080/1000000000000000128/' > es5-shim.min.js",
"minify-sham": "uglifyjs es5-sham.js --support-ie8 --keep-fnames --comments --source-map=es5-sham.map -m -b ascii_only=true,beautify=false > es5-sham.min.js",
"pretest": "npm run --silent lint",
"test": "npm run --silent tests-only",
"tests-only": "jasmine-node --matchall ./ tests/spec/",
"test-native": "jasmine-node --matchall tests/spec/",
"lint": "concurrently --raw 'npm run --silent jscs' 'npm run --silent eslint'",
"lint": "npm run --silent jscs && npm run --silent eslint",
"eslint": "eslint tests/helpers/*.js tests/spec/*.js es5-shim.js es5-sham.js",
"jscs": "jscs tests/helpers/*.js tests/spec/*.js es5-shim.js es5-sham.js"
},
"devDependencies": {
"eslint": "^2.12.0",
"@ljharb/eslint-config": "^5.0.0",
"jasmine-node": "^1.14.5",
"jscs": "^3.0.4",
"uglify-js": "^2.6.2",
"replace": "^0.3.0",
"semver": "^5.1.0",
"concurrently": "^2.1.0"
"@ljharb/eslint-config": "^13.0.0",
"eslint": "^5.5.0",
"jasmine-node": "^1.13.1",
"jscs": "^3.0.7",
"replace": "^1.0.0",
"semver": "^5.5.1",
"uglify-js": "2.7.3"
},
"engines": {
"node": ">=0.4.0"
@ -70,6 +70,10 @@
"javascript",
"ecmascript",
"polyfill"
]
],
"greenkeeper": {
"ignore": [
"uglify-js"
]
}
}