-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
51 lines (51 loc) · 1.23 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
{
"name": "optimize-css-assets-webpack-plugin",
"version": "5.0.8",
"description": "A Webpack plugin to optimize \\ minimize CSS assets.",
"keywords": [
"CSS",
"duplicate",
"extract-text-webpack-plugin",
"minimize",
"optimize",
"remove",
"webpack"
],
"homepage": "http://github.com/NMFR/optimize-css-assets-webpack-plugin",
"license": "MIT",
"author": "Nuno Rodrigues",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "http://github.com/NMFR/optimize-css-assets-webpack-plugin.git"
},
"scripts": {
"test": "jest",
"test:watch": "jest --watch"
},
"jest": {
"testEnvironment": "node",
"watchPathIgnorePatterns": [
"<rootDir>/test/js/*.*"
]
},
"dependencies": {
"cssnano": "^4.1.10",
"last-call-webpack-plugin": "^3.0.0"
},
"devDependencies": {
"babel-core": "^6.26.3",
"babel-jest": "^26.3.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-polyfill": "^6.26.0",
"babel-preset-env": "^1.7.0",
"css-loader": "^3.6.0",
"extract-text-webpack-plugin": "next",
"jest": "^26.4.2",
"style-loader": "^0.20.1",
"webpack": "^4.44.1"
},
"peerDependencies": {
"webpack": "^4.0.0"
}
}