forked from inexorabletash/polyfill
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
73 lines (73 loc) · 1.79 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@searchfe/polyfills",
"author": "Joshua Bell <[email protected]>",
"version": "0.2.8",
"description": "Collection of Web polyfills.",
"license": "Unlicense",
"main": "polyfill.js",
"files": [
"README.md",
"LICENSE.md",
"polyfill.js",
"polyfill.min.js",
"web.js",
"web.min.js",
"es5.md",
"es5.js",
"es6.md",
"es6.js",
"es2016.md",
"es2016.js",
"es2017.md",
"es2017.js",
"html.js",
"dom.js",
"xhr.js",
"url.js",
"fetch.js",
"cssom.js",
"timing.js",
"keyboard.md",
"keyboard.js",
"typedarray.js",
"array",
"object",
"config_output",
"pc_config_output"
],
"repository": {
"type": "git",
"url": "https://github.com/inexorabletash/polyfill.git"
},
"keywords": [
"polyfill",
"standards"
],
"bugs": {
"url": "https://github.com/inexorabletash/polyfill/issues"
},
"homepage": "https://github.com/inexorabletash/polyfill",
"scripts": {
"build": "webpack --config ./build/webpack.config.js --mode=production",
"dev": "webpack serve --config ./build/webpack.config.js",
"build:pc": "export PC=true && webpack --config ./build/webpack.config.js --mode=production",
"dev:pc": "export PC=true && webpack serve --config ./build/webpack.config.js",
"test": "jest"
},
"devDependencies": {
"@babel/core": "^7.12.10",
"@babel/preset-env": "^7.12.11",
"abortcontroller-polyfill": "^1.7.5",
"babel-loader": "^8.2.2",
"clean-webpack-plugin": "^3.0.0",
"core-js": "^3.8.1",
"glob": "^7.1.6",
"html-webpack-plugin": "^4.5.0",
"jest": "^27.0.0-next.1",
"promise-polyfill": "^8.2.0",
"webpack": "^5.11.0",
"webpack-cli": "^4.2.0",
"webpack-dev-server": "^3.11.0",
"whatwg-fetch": "^3.5.0"
}
}