-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
45 lines (45 loc) · 1.13 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
{
"name": "webpack-polyfill-injector",
"version": "3.0.2",
"description": "Webpack plugin to automatically inject polyfills into your bundle",
"keywords": [
"webpack",
"polyfill"
],
"main": "src/plugin.js",
"loader": "src/loader.js",
"repository": {
"type": "git",
"url": "https://github.com/SebastianS90/webpack-polyfill-injector"
},
"author": "Sebastian Schweizer",
"license": "MIT",
"scripts": {
"test": "nyc mocha",
"eslint": "eslint --color --format codeframe .",
"coveralls": "nyc mocha && nyc report --reporter=text-lcov | coveralls"
},
"dependencies": {
"loader-utils": "^1.2.3",
"polyfill-library": "^3.27.4",
"webpack-sources": "^1.0.0"
},
"peerDependencies": {
"webpack": "^4.0.0"
},
"devDependencies": {
"chai": "^4.1.2",
"chai-as-promised": "^7.1.1",
"coveralls": "^3.0.0",
"dirty-chai": "^2.0.1",
"eslint": "^5.12.1",
"eslint-plugin-import": "^2.15.0",
"jsdom": "^13.2.0",
"lodash": "^4.17.4",
"memory-fs": "^0.4.1",
"mocha": "^5.1.1",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^13.1.0",
"webpack": "^4.29.0"
}
}