forked from nDmitry/grunt-postcss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 951 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
{
"name": "grunt-postcss",
"version": "0.9.0",
"description": "Apply several post-processors to your CSS using PostCSS",
"author": {
"name": "Dmitry Nikitenko",
"email": "[email protected]"
},
"repository": "nDmitry/grunt-postcss",
"license": "MIT",
"engines": {
"node": ">= 0.12.0"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"gruntplugin",
"postcss-runner",
"css",
"postprocessor",
"postcss"
],
"files": [
"tasks",
"LICENSE"
],
"dependencies": {
"chalk": "^2.1.0",
"diff": "^3.0.0",
"postcss": "^6.0.11"
},
"devDependencies": {
"cssnano": "^3.3.1",
"grunt": "^1.0.1",
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-jshint": "^1.0.0",
"grunt-contrib-nodeunit": "^1.0.0",
"load-grunt-tasks": "^3.1.0",
"postcss-scss": "^1.0.2",
"time-grunt": "^1.1.0"
},
"peerDependencies": {
"grunt": ">=0.4.5"
}
}