forked from alexpalombaro/modernizr-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.4 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
{
"name": "modernizr-webpack-plugin",
"version": "2.0.0",
"description": "Creates a custom Modernizr build during webpack compile. Integrates with html-webpack-plugin.",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"test": "mocha mocha.entry.js && node karma.runner.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexpalombaro/modernizr-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"modernizr",
"html-webpack-plugin"
],
"author": "Alessandro Palombaro (https://github.com/alexpalombaro)",
"contributors": [
"Simen Bekkhus (https://github.com/SimenB)",
"Mikhail Kyurshin ([email protected])"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/alexpalombaro/modernizr-webpack-plugin/issues"
},
"homepage": "https://github.com/alexpalombaro/modernizr-webpack-plugin#readme",
"dependencies": {
"modernizr": "^3.5.0",
"uglify-js": "^2.4.24",
"webpack-core": "^0.6.7",
"html-webpack-plugin": "^5.5.0"
},
"devDependencies": {
"bluebird": "^2.10.2",
"chai": "^3.3.0",
"del": "^2.0.2",
"eslint": "^4.18.2",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^1.1.0",
"karma-webpack": "^5.0",
"mocha": "^2.3.3",
"sinon": "^2.2.0",
"sinon-chai": "^2.10.0",
"webpack": "^5.0"
}
}