forked from open-wc/open-wc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.56 KB
/
package.json
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
{
"name": "polyfills-loader",
"version": "1.5.6",
"publishConfig": {
"access": "public"
},
"description": "Tool for polyfilling js and browser features on demand",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/open-wc/open-wc.git",
"directory": "packages/polyfills-loader"
},
"author": "open-wc",
"homepage": "https://github.com/open-wc/open-wc/tree/master/packages/polyfills-loader",
"main": "index.js",
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"prepublishOnly": "../../scripts/insert-header.js",
"test": "npm run test:node",
"test:node": "mocha test/**/*.test.js test/**/*.test.js",
"test:update-snapshots": "mocha test/**/*.test.js test/**/*.test.js --update-snapshots",
"test:watch": "mocha test/**/*.test.js test/**/*.test.js --watch"
},
"files": [
"index.js",
"src"
],
"dependencies": {
"@babel/core": "^7.9.0",
"@open-wc/building-utils": "^2.16.4",
"@webcomponents/webcomponentsjs": "^2.4.0",
"abortcontroller-polyfill": "^1.4.0",
"core-js-bundle": "^3.6.0",
"deepmerge": "^4.2.2",
"dynamic-import-polyfill": "^0.1.1",
"es-module-shims": "^0.4.6",
"html-minifier": "^4.0.0",
"intersection-observer": "^0.7.0",
"parse5": "^5.1.1",
"regenerator-runtime": "^0.13.3",
"resize-observer-polyfill": "^1.5.1",
"systemjs": "^4.0.0",
"terser": "^4.6.7",
"whatwg-fetch": "^3.0.0"
},
"devDependencies": {
"@types/babel__core": "^7.1.3",
"@types/parse5": "^5.0.2",
"@types/valid-url": "^1.0.2"
}
}