-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 2.55 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "postcss-media-legacy",
"author": {
"name": "Ruben Rizzi",
"email": "[email protected]",
"url": "http://www.rubenrizzi.com/"
},
"license": "MIT",
"version": "1.3.2",
"description": "Simple plugin for PostCSS to copy media queries for browsers which cannot support them, ideal for Mobile First development",
"homepage": "https://github.com/raynor85/postcss-media-legacy",
"repository": {
"type": "git",
"url": "git+https://github.com/raynor85/postcss-media-legacy.git"
},
"keywords": [
"css",
"postcss",
"postcss-plugin",
"media-query",
"legacy",
"ie8"
],
"files": [
"index.js",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"main": "index.js",
"dependencies": {
"postcss": "^5.0.14"
},
"bugs": {
"url": "https://github.com/raynor85/postcss-media-legacy/issues"
},
"_id": "[email protected]",
"_npmVersion": "2.11.3",
"_nodeVersion": "0.12.7",
"_npmUser": {
"name": "rubenrizzi",
"email": "[email protected]"
},
"maintainers": [
{
"name": "rubenrizzi",
"email": "[email protected]"
}
],
"dist": {
"tarball": "http://registry.npmjs.org/postcss-media-legacy/-/postcss-media-legacy-1.3.0.tgz"
},
"directories": {},
"_resolved": "https://registry.npmjs.org/postcss-media-legacy/-/postcss-media-legacy-1.3.0.tgz",
"readme": "# PostCSS Media Legacy\n\n[PostCSS](https://github.com/raynor85/postcss-media-legacy) plugin for Mobile First development that rewrites media queries for IE8 and below.\n\nUse this plugin with [Modernizr](http://modernizr.com/) or adding the class \"lt-ie9\" in your html element.\n\n## Installation\n\n```\nnpm install postcss-media-legacy --save\n```\n\n## Example Input-Output\n\nInput:\n```css\n@media screen and (min-width:320px) {\n .show-xs {\n display: none\n }\n}\n```\n\nOutput:\n```css\n.lt-ie9 .show-xs {\n display: none;\n}\n@media screen and (min-width:320px) {\n .show-xs {\n display: none\n }\n}\n```\n\n## Usage\n\n### Plug it in to PostCSS\n\nPlug it in just like any other PostCSS plugin. There are no options at the moment.\n\n```js\npostcss([ require('postcss-media-legacy') ])\n```\n\nOr take advantage of [any of the myriad other ways to consume PostCSS](https://github.com/postcss/postcss#usage), and follow the plugin instructions they provide.\n",
"readmeFilename": "README.md",
"gitHead": "e6f9f4a409d6d8bf33c150c12a3b98e1b7954aa7",
"scripts": {},
"_shasum": "05c535958a479f1092428e01426b650e12bf3388",
"_from": "postcss-media-legacy@>=1.3.1 <2.0.0"
}