diff options
author | talasila <talasila@research.att.com> | 2017-02-07 15:03:57 -0500 |
---|---|---|
committer | talasila <talasila@research.att.com> | 2017-02-07 15:05:15 -0500 |
commit | 4ad39a5c96dd99acf819ce189b13fec946d7506b (patch) | |
tree | a1449286441947cc3d07a45227fa0d6f978e1a7d /ecomp-portal-FE/client/bower_components/es5-shim/package.json | |
parent | 5500448cbd1f374d0ac743ee2fd636fe2d3c0027 (diff) |
Initial OpenECOMP Portal commit
Change-Id: I804b80e0830c092e307da1599bd9fbb5c3e2da77
Signed-off-by: talasila <talasila@research.att.com>
Diffstat (limited to 'ecomp-portal-FE/client/bower_components/es5-shim/package.json')
-rw-r--r-- | ecomp-portal-FE/client/bower_components/es5-shim/package.json | 75 |
1 files changed, 75 insertions, 0 deletions
diff --git a/ecomp-portal-FE/client/bower_components/es5-shim/package.json b/ecomp-portal-FE/client/bower_components/es5-shim/package.json new file mode 100644 index 00000000..2c049819 --- /dev/null +++ b/ecomp-portal-FE/client/bower_components/es5-shim/package.json @@ -0,0 +1,75 @@ +{ + "name": "es5-shim", + "version": "4.5.9", + "description": "ECMAScript 5 compatibility shims for legacy JavaScript engines", + "homepage": "http://github.com/es-shims/es5-shim/", + "contributors": [ + "Kris Kowal <kris@cixar.com> (http://github.com/kriskowal/)", + "Sami Samhuri <sami.samhuri@gmail.com> (http://samhuri.net/)", + "Florian Schäfer <florian.schaefer@gmail.com> (http://github.com/fschaefer)", + "Irakli Gozalishvili <rfobic@gmail.com> (http://jeditoolkit.com)", + "Kit Cambridge <kitcambridge@gmail.com> (http://kitcambridge.github.com)", + "Jordan Harband <ljharb@gmail.com> (https://github.com/ljharb/)" + ], + "bugs": { + "mail": "ljharb@gmail.com", + "url": "http://github.com/es-shims/es5-shim/issues" + }, + "license": "MIT", + "main": "es5-shim.js", + "repository": { + "type": "git", + "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", + "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'", + "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" + }, + "engines": { + "node": ">=0.4.0" + }, + "testling": { + "browsers": [ + "iexplore/6.0..latest", + "firefox/3.0..6.0", + "firefox/18.0..latest", + "firefox/nightly", + "chrome/4.0..10.0", + "chrome/25.0..latest", + "chrome/canary", + "opera/10.0..latest", + "opera/next", + "safari/4.0..latest", + "ipad/6.0..latest", + "iphone/6.0..latest", + "android-browser/4.2" + ] + }, + "keywords": [ + "shim", + "es5", + "es5 shim", + "javascript", + "ecmascript", + "polyfill" + ] +} + |