summaryrefslogtreecommitdiffstats
path: root/js/vendor/es6-shim/package.json
blob: 22134584c7cc554f66016c332d1b4f10554484de (plain)
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
{
  "author": "Paul Miller (http://paulmillr.com)",
  "name": "es6-shim",
  "version": "0.18.0",
  "description": "ECMAScript 6 (Harmony) compatibility shims for legacy JavaScript engines",
  "keywords": [
    "ecmascript",
    "harmony",
    "es6",
    "shim",
    "promise",
    "promises",
    "setPrototypeOf",
    "map",
    "set",
    "__proto__"
  ],
  "homepage": "https://github.com/paulmillr/es6-shim/",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git://github.com/paulmillr/es6-shim.git"
  },
  "main": "es6-shim",
  "scripts": {
    "test": "npm run test-shim && npm run test-sham",
    "lint": "npm run lint-shim && npm run lint-sham",
    "lint-shim": "jshint es6-shim.js",
    "lint-sham": "jshint es6-sham.js",
    "test-shim": "npm run lint-shim && mocha test/*.js test/*/*.js",
    "test-sham": "npm run lint-sham && mocha test-sham/*.js",
    "test-native": "jshint es6-shim.js && NO_ES6_SHIM=1 mocha test/*.js test/*/*.js",
    "minify": "npm run minify-shim && npm run minify-sham",
    "minify-shim": "uglifyjs es6-shim.js --comments --source-map=es6-shim.map -m -b ascii_only=true,beautify=false > es6-shim.min.js",
    "minify-sham": "uglifyjs es6-sham.js --comments --source-map=es6-sham.map -m -b ascii_only=true,beautify=false > es6-sham.min.js",
    "sauce": "grunt sauce"
  },
  "testling": {
    "html": "testling.html",
    "browsers": [
      "iexplore/9.0..latest",
      "firefox/10.0",
      "firefox/17.0",
      "firefox/22.0..latest",
      "firefox/nightly",
      "chrome/25.0..latest",
      "chrome/canary",
      "safari/5.0.5..latest",
      "ipad/6.0..latest",
      "iphone/6.0..latest",
      "opera/12.0..latest",
      "android-browser/4.2..latest"
    ]
  },
  "dependencies": {},
  "devDependencies": {
    "chai": "~1.9.1",
    "es5-shim": "~4.0.3",
    "grunt": "~0.4.5",
    "grunt-contrib-connect": "~0.1.2",
    "grunt-contrib-watch": "~0.2.0",
    "grunt-saucelabs": "~8.3.1",
    "jshint": "~2.5.5",
    "mocha": "~1.21.4",
    "promises-aplus-tests": "~2.0.5",
    "promises-es6-tests": "~0.5.0",
    "uglify-js": "~2.4.15"
  }
}