Created
July 18, 2014 01:12
-
-
Save drewbaumann/1b47791d200af1875d78 to your computer and use it in GitHub Desktop.
es5-shim package
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
{ | |
"name": "es5-shim", | |
"npmName": "es5-shim", | |
"npmFileMap": [ | |
{ | |
"basePath": "/", | |
"files": [ | |
"es5*" | |
] | |
} | |
], | |
"version": "4.0.0", | |
"filename": "es5-shim.min.js", | |
"description": "ECMAScript 5 compatibility shims for legacy JavaScript engines", | |
"homepage": "http://github.com/es-shims/es5-shim/", | |
"contributors": [ | |
"Kris Kowal <[email protected]> (http://github.com/kriskowal/)", | |
"Sami Samhuri <[email protected]> (http://samhuri.net/)", | |
"Florian Schäfer <[email protected]> (http://github.com/fschaefer)", | |
"Irakli Gozalishvili <[email protected]> (http://jeditoolkit.com)", | |
"Kit Cambridge <[email protected]> (http://kitcambridge.github.com)", | |
"Jordan Harband <[email protected]> (https://github.com/ljharb/)" | |
], | |
"bugs": { | |
"mail": "[email protected]", | |
"url": "http://github.com/es-shims/es5-shim/issues" | |
}, | |
"licenses": [ | |
{ | |
"type": "MIT", | |
"url": "http://github.com/es-shims/es5-shim/raw/master/LICENSE" | |
} | |
], | |
"main": "es5-shim.js", | |
"repository": { | |
"type": "git", | |
"url": "http://github.com/es-shims/es5-shim.git" | |
}, | |
"scripts": { | |
"minify": "npm run minify-shim && npm run minify-sham", | |
"minify-shim": "uglifyjs es5-shim.js --comments --source-map=es5-shim.map -m -b ascii_only=true,beautify=false > es5-shim.min.js", | |
"minify-sham": "uglifyjs es5-sham.js --comments --source-map=es5-sham.map -m -b ascii_only=true,beautify=false > es5-sham.min.js", | |
"test": "jasmine-node --matchall ./ tests/spec/", | |
"test-native": "jasmine-node --matchall tests/spec/", | |
"lint": "jscs tests/helpers/*.js tests/spec/*.js es5-shim.js es5-sham.js" | |
}, | |
"devDependencies": { | |
"jasmine-node": "~1.14.5", | |
"jscs": "~1.5.8", | |
"uglify-js": "~2.4.14" | |
}, | |
"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" | |
] | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment