-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 868 Bytes
/
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
{
"name": "encapsulated-css-loader",
"description": "A Webpack loader to encapsulate CSS with a given class name to prevent styles from leaking between modules.",
"repository": {
"type": "git",
"url": "git+https://github.com/01taylop/encapsulated-css-loader.git"
},
"version": "2.0.0",
"main": "src/loader.js",
"engines": {
"node": ">=12.13.0"
},
"files": [
"src/loader.js"
],
"scripts": {
"test": "jest --runInBand"
},
"dependencies": {
"schema-utils": "4.2.0"
},
"devDependencies": {
"@babel/core": "7.24.6",
"@babel/preset-env": "7.24.6",
"css-loader": "6.11.0",
"jest": "29.7.0",
"memfs": "4.9.2",
"webpack": "5.91.0"
},
"author": "Patrick Taylor <[email protected]>",
"keywords": [
"css",
"encapsulated",
"loader",
"scoped",
"scss",
"webpack"
]
}