-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.69 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
67
{
"name": "postcss-webpack-plugin",
"version": "1.0.2",
"description": "A webpack plugin to process generated assets with PostCSS with support for webpack 5 filesystem cache.",
"main": "./dist/index.js",
"types": "./dist/index.d.js",
"type": "commonjs",
"scripts": {
"dev": "tsc -w",
"build": "tsc -b",
"lint": "eslint './**/*.{js,jsx,ts,tsx}'",
"test": "jest",
"prepare": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jsimck/postcss-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"postcss",
"minimizer",
"css",
"less",
"sass",
"optimize",
"pipeline"
],
"author": "Jan Šimeček (https://github.com/jsimck)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jsimck/postcss-webpack-plugin/issues"
},
"homepage": "https://github.com/jsimck/postcss-webpack-plugin#readme",
"devDependencies": {
"@types/jest": "^28.1.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"cssnano": "^5.1.12",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^28.1.3",
"mini-css-extract-plugin": "^2.6.1",
"postcss": "^8.4.14",
"postcss-font-family-system-ui": "^5.0.0",
"postcss-pxtorem": "^6.0.0",
"prettier": "^2.7.1",
"ts-jest": "^28.0.7",
"ts-node": "^10.9.1",
"typescript": "^4.7.4",
"webpack": "^5.74.0"
},
"peerDependencies": {
"postcss": ">=8",
"webpack": ">=5"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"css-loader": "^6.7.1",
"memfs": "^3.4.7"
}
}