|
Last change
on this file was 9af201e, checked in by MBK <marija.karapandzova@…>, 11 days ago |
|
Fix frontend appearance
|
-
Property mode
set to
100644
|
|
File size:
1.5 KB
|
| Line | |
|---|
| 1 | {
|
|---|
| 2 | "name": "postcss-normalize-display-values",
|
|---|
| 3 | "version": "5.1.0",
|
|---|
| 4 | "description": "Normalize multiple value display syntaxes into single values.",
|
|---|
| 5 | "main": "src/index.js",
|
|---|
| 6 | "types": "types/index.d.ts",
|
|---|
| 7 | "files": [
|
|---|
| 8 | "LICENSE-MIT",
|
|---|
| 9 | "src",
|
|---|
| 10 | "types"
|
|---|
| 11 | ],
|
|---|
| 12 | "license": "MIT",
|
|---|
| 13 | "dependencies": {
|
|---|
| 14 | "postcss-value-parser": "^4.2.0"
|
|---|
| 15 | },
|
|---|
| 16 | "author": {
|
|---|
| 17 | "name": "Ben Briggs",
|
|---|
| 18 | "email": "beneb.info@gmail.com",
|
|---|
| 19 | "url": "http://beneb.info"
|
|---|
| 20 | },
|
|---|
| 21 | "repository": "cssnano/cssnano",
|
|---|
| 22 | "bugs": {
|
|---|
| 23 | "url": "https://github.com/cssnano/cssnano/issues"
|
|---|
| 24 | },
|
|---|
| 25 | "homepage": "https://github.com/cssnano/cssnano",
|
|---|
| 26 | "engines": {
|
|---|
| 27 | "node": "^10 || ^12 || >=14.0"
|
|---|
| 28 | },
|
|---|
| 29 | "devDependencies": {
|
|---|
| 30 | "postcss": "^8.2.15"
|
|---|
| 31 | },
|
|---|
| 32 | "peerDependencies": {
|
|---|
| 33 | "postcss": "^8.2.15"
|
|---|
| 34 | },
|
|---|
| 35 | "readme": "# [postcss][postcss]-normalize-display-values\n\n> Normalize display property values with PostCSS.\n\n## Install\n\nWith [npm](https://npmjs.org/package/postcss-normalize-display-values) do:\n\n```\nnpm install postcss-normalize-display-values --save\n```\n\n## Example\n\n### Input\n\n```css\ndiv {\n display: inline flow-root\n}\n```\n\n### Output\n\n```css\ndiv {\n display: inline-block\n}\n``` \n\n## Usage\n\nSee the [PostCSS documentation](https://github.com/postcss/postcss#usage) for\nexamples for your environment.\n\n## Contributors\n\nSee [CONTRIBUTORS.md](https://github.com/cssnano/cssnano/blob/master/CONTRIBUTORS.md).\n\n## License\n\nMIT © [Ben Briggs](http://beneb.info)\n\n[postcss]: https://github.com/postcss/postcss\n"
|
|---|
| 36 | } |
|---|
Note:
See
TracBrowser
for help on using the repository browser.