-
Notifications
You must be signed in to change notification settings - Fork 59
/
Copy pathpackage.json
36 lines (36 loc) · 862 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
{
"name": "@hail2u/css-mqpacker",
"version": "9.0.1",
"description": "Pack same CSS media query rules into one using PostCSS",
"homepage": "https://github.com/hail2u/node-css-mqpacker",
"bugs": {
"url": "https://github.com/hail2u/node-css-mqpacker/issues"
},
"license": "MIT",
"author": "Kyo Nagashima <[email protected]> (https://hail2u.net/)",
"files": [],
"main": "index.js",
"bin": {
"mqpacker": "./bin/mqpacker.js"
},
"repository": {
"type": "git",
"url": "git://github.com/hail2u/node-css-mqpacker.git"
},
"scripts": {
"test": "eslint index.js bin/mqpacker.js test/index.js && node test/index.js"
},
"dependencies": {
"minimist": "^1.2.6"
},
"devDependencies": {
"eslint": "^7.2.0",
"tape": "^5.0.1"
},
"peerDependencies": {
"postcss": "^8.3.5"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}