-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 814 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 814 Bytes
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
{
"name": "mini-css-themes-plugin",
"version": "1.0.0-beta.1",
"description": "Webpack plugin to generate separate themes for css modules.",
"main": "index.js",
"scripts": {
"test": "cd test && npm run test"
},
"repository": "https://github.com/archfz/mini-css-themes-plugin",
"keywords": [
"webpack",
"plugin",
"themes",
"css",
"modules",
"chunks",
"switch",
"style"
],
"author": "fodor18zoltan@gmail.com",
"license": "MIT",
"peerDependencies": {
"webpack": "^5.0.0",
"mini-css-extract-plugin": "^2.0.0"
},
"optionalDependencies": {
"css-loader": "^6.0.0"
},
"dependencies": {
"loader-utils": "^2.0.4"
},
"devDependencies": {
"webpack": "^5.0.0",
"mini-css-extract-plugin": "^2.0.0",
"css-loader": "^6.0.0"
}
}