-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
66 lines (66 loc) · 1.58 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
{
"name": "clean-css-loader",
"version": "4.2.1",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"clean-css": "^5.0.0"
},
"peerDependencies": {
"schema-utils": "^3.0.0 || ^4.0.0",
"loader-utils": "^1.0.0 || ^2.0.0 || ^3.0.0",
"webpack": ">=2.0.0"
},
"peerDependenciesMeta": {
"webpack": {
"optional": true
},
"loader-utils": {
"optional": true
},
"schema-utils": {
"optional": true
}
},
"scripts": {
"pree2e": "yarn build",
"e2e": "yarn update-e2e && yarn test",
"force-clean": "rimraf ./test/e2e/webpack*/node_modules/ ./test/e2e/webpack*/tests/**/*.test.js",
"install-sub": "yarn link && cd test/e2e/webpack5 && yarn && yarn build && cd ../../..",
"update-e2e": "yarn force-clean && yarn install-sub",
"prebuild": "rimraf ./lib",
"build": "tsc",
"postbuild": "prettier --write ./lib",
"test": "jest"
},
"description": "CleanCSS loader module for webpack",
"keywords": [
"CleanCSS",
"webpack",
"loader"
],
"repository": "https://github.com/retyui/clean-css-loader",
"author": "David <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"engines": {
"node": ">= 12.0.0"
},
"devDependencies": {
"@tsconfig/node12": "^1.0.11",
"@types/clean-css": "^4.2.6",
"@types/loader-utils": "^2.0.3",
"@types/node": "^16.18.11",
"@types/schema-utils": "^2.4.0",
"jest": "^29.3.1",
"loader-utils": "^3.2.1",
"prettier": "^2.8.2",
"rimraf": "^3.0.2",
"schema-utils": "^4.0.0",
"source-maps": "^1.0.12",
"typescript": "^4.9.4",
"webpack": "^5.75.0"
}
}