forked from nDmitry/grunt-postcss
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
47 lines (47 loc) · 1021 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
40
41
42
43
44
45
46
47
{
"name": "@lodder/grunt-postcss",
"version": "3.1.0",
"description": "Apply several post-processors to your CSS using PostCSS",
"author": {
"name": "Dmitry Nikitenko",
"email": "[email protected]"
},
"repository": "C-Lodder/grunt-postcss",
"license": "MIT",
"engines": {
"node": "^10 || ^12 || >=14"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"gruntplugin",
"postcss-runner",
"css",
"postprocessor",
"postcss"
],
"files": [
"tasks/*.js"
],
"dependencies": {
"diff": "^5.0.0",
"maxmin": "^3.0.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@lodder/time-grunt": "^4.0.0",
"cssnano": "^5.0.8",
"grunt": "^1.4.1",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^3.1.1",
"grunt-contrib-nodeunit": "^4.0.0",
"load-grunt-tasks": "^5.1.0",
"postcss": "^8.3.11",
"postcss-scss": "^4.0.2"
},
"peerDependencies": {
"grunt": ">=1.0.4",
"postcss": "^8.0.0"
}
}