forked from nDmitry/grunt-autoprefixer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 994 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
{
"name": "grunt-autoprefixer",
"version": "3.0.0",
"description": "Parse CSS and add vendor-prefixed CSS properties using the Can I Use database. Based on Autoprefixer.",
"author": {
"name": "Dmitry Nikitenko",
"email": "dima.nikitenko@gmail.com"
},
"repository": "nDmitry/grunt-autoprefixer",
"license": "MIT",
"engines": {
"node": ">= 0.10.0"
},
"scripts": {
"test": "grunt test"
},
"keywords": [
"gruntplugin",
"css",
"postprocessor",
"prefix",
"autoprefixer"
],
"files": [
"tasks",
"LICENSE"
],
"dependencies": {
"autoprefixer-core": "^5.1.7",
"diff": "~1.3.0",
"chalk": "~1.0.0"
},
"devDependencies": {
"grunt": "~0.4.4",
"grunt-contrib-jshint": "~0.10.0",
"grunt-contrib-clean": "~0.6.0",
"grunt-contrib-nodeunit": "~0.4.0",
"grunt-contrib-copy": "~0.7.0",
"load-grunt-tasks": "~2.0.0",
"time-grunt": "~1.0.0"
},
"peerDependencies": {
"grunt": "~0.4.2"
}
}