-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
44 lines (44 loc) · 934 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
{
"name": "postcss-extract-media-query",
"version": "3.0.0",
"description": "PostCSS plugin to extract all media query from CSS and emit as separate files.",
"author": "Kai Falkowski",
"license": "MIT",
"main": "index.js",
"scripts": {
"prepare": "husky install",
"test": "mocha"
},
"keywords": [
"postcss",
"plugin",
"postcss-plugin",
"css",
"mediaquery",
"mq",
"extract",
"split",
"combine"
],
"dependencies": {
"app-root-path": "^3.0.0",
"kleur": "^4.1.4",
"lodash": "^4.17.10"
},
"devDependencies": {
"chai": "^4.3.4",
"husky": "^7.0.0",
"mocha": "^9.1.2",
"postcss": "^8.3.9",
"prettier": "^2.4.1",
"pretty-quick": "^3.1.1",
"rimraf": "^3.0.2"
},
"peerDependencies": {
"postcss": "^8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/SassNinja/postcss-extract-media-query.git"
}
}