css2json

1.1.1 • Public • Published

Css2json

Css2json transform CSS to JSON.

Installation

npm install css2json

Usage

var css2json = require('css2json');
var json = css2json(css);

Example

The css

h1#header {
  font-family: 'Times New Roman';
}

p {
  margin-right: 100px;
}

h1#header {
  color: #ff0000  
}

would transform into

{
  "h1#header": {
    "font-family": "Times New Roman",
    "color": "#ff0000"
  },
  "p": {
    "margin-right": "100px"
  }
}

Readme

Keywords

none

Package Sidebar

Install

npm i css2json

Weekly Downloads

1,517

Version

1.1.1

License

MIT

Unpacked Size

32.8 kB

Total Files

17

Last publish

Collaborators

  • kesla