forked from hail2u/node-css-mqpacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 923 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
{
"name": "css-mqgroup",
"description": "Pack same CSS media query rules into one using PostCSS. Fork from https://github.com/hail2u/node-css-mqpacker",
"version": "7.1.0",
"author": "Kyo Nagashima <[email protected]> (https://kyonagashima.com/)",
"contributors": [
"Yoannis Jamar <[email protected] (http://yoannis.com)"
],
"bin": {
"mqgroup": "./bin/mqgroup.js"
},
"bugs": {
"url": "https://github.com/yoannisj/css-mqgroup/issues"
},
"dependencies": {
"minimist": "^1.2.0",
"postcss": "^7.0.0"
},
"devDependencies": {
"nodeunit": "^0.11.3"
},
"homepage": "https://github.com/yoannisj/css-mqgroup",
"keywords": [
"css",
"media",
"postcss-plugin",
"query"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/yoannisj/css-mqgroup.git"
},
"scripts": {
"test": "nodeunit test"
}
}