1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
| {
| "name": "es5-shim",
| "version": "4.1.15",
| "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": "npm run minify-shim && npm run 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",
| "test": "npm run lint && jasmine-node --matchall ./ tests/spec/",
| "test-native": "jasmine-node --matchall tests/spec/",
| "lint": "npm run jscs && npm run 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": "^1.7.1",
| "@ljharb/eslint-config": "^1.4.1",
| "jasmine-node": "^1.14.5",
| "jscs": "^2.3.4",
| "uglify-js": "^2.5.0",
| "replace": "^0.3.0",
| "semver": "^5.0.3"
| },
| "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"
| ]
| }
|
|