forked from nDmitry/grunt-postcss
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
47 lines (47 loc) · 1007 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.1",
"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": ">=14"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"gruntplugin",
"postcss-runner",
"css",
"postprocessor",
"postcss"
],
"files": [
"tasks/*.js"
],
"dependencies": {
"diff": "^5.2.0",
"maxmin": "^3.0.0",
"picocolors": "^1.1.1"
},
"devDependencies": {
"@lodder/time-grunt": "^4.0.0",
"cssnano": "^7.0.6",
"grunt": "^1.6.1",
"grunt-contrib-clean": "^2.0.1",
"grunt-contrib-jshint": "^3.2.0",
"grunt-contrib-nodeunit": "^5.0.0",
"load-grunt-tasks": "^5.1.0",
"postcss": "^8.4.49",
"postcss-scss": "^4.0.9"
},
"peerDependencies": {
"grunt": ">=1.0.4",
"postcss": "^8.0.0"
}
}