{"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"dist-tags":{"latest":"3.1.0"},"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"description":"PostCSS plugin for Sass-like variables","readme":"# PostCSS Simple Variables [![Build Status][ci-img]][ci]\n\n<img align=\"right\" width=\"95\" height=\"95\"\n     title=\"Philosopher’s stone, logo of PostCSS\"\n     src=\"http://postcss.github.io/postcss/logo.svg\">\n\n[PostCSS] plugin for Sass-like variables.\n\nYou can use variables inside values, selectors and at-rule’s parameters.\n\n```css\n$dir:    top;\n$blue:   #056ef0;\n$column: 200px;\n\n.menu_link {\n    background: $blue;\n    width: $column;\n}\n.menu {\n    width: calc(4 * $column);\n    margin-$(dir): 10px;\n}\n```\n\n```css\n.menu_link {\n    background: #056ef0;\n    width: 200px;\n}\n.menu {\n    width: calc(4 * 200px);\n    margin-top: 10px;\n}\n```\n\nIf you want be closer to W3C spec,\nyou should use [postcss-custom-properties] and [postcss-at-rules-variables] plugins.\n\nAlso you should look at [postcss-map] for big complicated configs.\n\n[postcss-at-rules-variables]: https://github.com/GitScrum/postcss-at-rules-variables\n[postcss-custom-properties]:  https://github.com/postcss/postcss-custom-properties\n[postcss-map]:                https://github.com/pascalduez/postcss-map\n[PostCSS]:                    https://github.com/postcss/postcss\n[ci-img]:                     https://travis-ci.org/postcss/postcss-simple-vars.svg\n[ci]:                         https://travis-ci.org/postcss/postcss-simple-vars\n\n## Interpolation\n\nThere is special syntax if you want to use variable inside CSS words:\n\n```css\n$prefix: my-company-widget\n\n$prefix { }\n$(prefix)_button { }\n```\n\n## Comments\n\nYou could use variables in comments too (for example, to generate special\n[mdcss] comments). But syntax for comment variables is different to separate\nthem from PreCSS code examples:\n\n```css\n$width: 100px;\n/* $width: <<$(width)>> */\n```\n\ncompiles to:\n\n```css\n/* $width: 100px */\n```\n\n[mdcss]: https://github.com/jonathantneal/mdcss\n\n## Escaping\n\nIf you want to escape `$` in `content` property, use Unicode escape syntax.\n\n```css\n.foo::before {\n    content: \"\\0024x\";\n}\n```\n\n## Usage\n\n```js\npostcss([ require('postcss-simple-vars') ])\n```\n\nSee [PostCSS] docs for examples for your environment.\n\n## Options\n\nCall plugin function to set options:\n\n```js\n.pipe(postcss([ require('postcss-simple-vars')({ silent: true }) ]))\n```\n\n### `variables`\n\nSet default variables. It is useful to store colors or other constants\nin common file:\n\n```js\n// config/colors.js\n\nmodule.exports = {\n    blue: '#056ef0'\n}\n\n// gulpfile.js\n\nvar colors = require('./config/colors');\nvar vars   = require('postcss-simple-vars')\n\ngulp.task('css', function () {\n     return gulp.src('./src/*.css')\n        .pipe(postcss([ vars({ variables: colors }) ]))\n        .pipe(gulp.dest('./dest'));\n});\n```\n\nYou can set a function returning object, if you want to update default\nvariables in webpack hot reload:\n\n```js\npostcss([\n    vars({\n        variables: function () {\n            return require('./config/colors');\n        }\n    })\n]\n```\n\n### `onVariables`\n\nCallback invoked once all variables in css are known. The callback receives\nan object representing the known variables, including those explicitly-declared\nby the [`variables`](#variables) option.\n\n```js\npostcss([\n    vars({\n        onVariables: function (variables) {\n            console.log('CSS Variables');\n            console.log(JSON.stringify(variables, null, 2));\n        }\n    })\n]\n```\n\n### `unknown`\n\nCallback on unknown variable name. It receives node instance, variable name\nand PostCSS Result object.\n\n```js\npostcss([\n    vars({\n        unknown: function (node, name, result) {\n            node.warn(result, 'Unknown variable ' + name);\n        }\n    })\n]\n```\n\n### `silent`\n\nLeft unknown variables in CSS and do not throw an error. Default is `false`.\n\n### `only`\n\nSet value only for variables from this object.\nOther variables will not be changed. It is useful for PostCSS plugin developers.\n","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"users":{"ahmedelgabri":true,"devalphac":true,"danielbayley":true},"bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"license":"MIT","versions":{"0.1.0":{"name":"postcss-simple-vars","version":"0.1.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","sass","css","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-simple-vars.git"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.0","gulp-mocha":"2.0.0","postcss":"4.0.3","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"e0bc2678baad7a1c36b9af52fcdc5a9805c2a9d6","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars","_id":"postcss-simple-vars@0.1.0","_shasum":"6fdbefba6a9519a400039ffaedc605ed6075121e","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"6fdbefba6a9519a400039ffaedc605ed6075121e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-0.1.0.tgz"},"directories":{}},"0.2.0":{"name":"postcss-simple-vars","version":"0.2.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","sass","css","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-simple-vars.git"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.2","gulp-mocha":"2.0.0","postcss":"4.0.3","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"f4477dc8246de97aa98a8705f089c31335e218d8","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars","_id":"postcss-simple-vars@0.2.0","_shasum":"cce566e30f852d84a20d1f6135cd3fc1ec282634","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"cce566e30f852d84a20d1f6135cd3fc1ec282634","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-0.2.0.tgz"},"directories":{}},"0.2.1":{"name":"postcss-simple-vars","version":"0.2.1","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","sass","css","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-simple-vars.git"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.2","gulp-mocha":"2.0.0","postcss":"4.0.3","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"fb9e52540d8bd98595d53669dba5ef89f4cfe146","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars","_id":"postcss-simple-vars@0.2.1","_shasum":"f9d7e177ee8b89c37560c9d3223f2f31687114d1","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"f9d7e177ee8b89c37560c9d3223f2f31687114d1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-0.2.1.tgz"},"directories":{}},"0.2.2":{"name":"postcss-simple-vars","version":"0.2.2","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","sass","css","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-simple-vars.git"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.2","gulp-mocha":"2.0.0","postcss":"4.0.3","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"9d84174782755de7e60c62afecca41327631119c","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars","_id":"postcss-simple-vars@0.2.2","_shasum":"f9ac4f85ed99741b6c723b0ef748adeb42424f1c","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"f9ac4f85ed99741b6c723b0ef748adeb42424f1c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-0.2.2.tgz"},"directories":{}},"0.2.3":{"name":"postcss-simple-vars","version":"0.2.3","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","sass","css","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-simple-vars.git"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.2","gulp-mocha":"2.0.0","postcss":"4.0.3","mocha":"2.1.0","chai":"1.10.0","gulp":"3.8.10"},"scripts":{"test":"gulp"},"gitHead":"0c22c04f5047a28874b26b46a37183ab07d27128","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars","_id":"postcss-simple-vars@0.2.3","_shasum":"16d3b6732ca640423b6e584b70878f5e1c9b84d1","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.33","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"16d3b6732ca640423b6e584b70878f5e1c9b84d1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-0.2.3.tgz"},"directories":{}},"0.2.4":{"name":"postcss-simple-vars","version":"0.2.4","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","sass","css","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-simple-vars.git"},"devDependencies":{"jshint-stylish":"1.0.0","gulp-jshint":"1.9.2","gulp-mocha":"2.0.0","postcss":"4.0.6","mocha":"2.1.0","chai":"2.1.0","gulp":"3.8.11"},"scripts":{"test":"gulp"},"gitHead":"0d6406491d58ef86e909f04f7bb4c9361e0f17f2","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars","_id":"postcss-simple-vars@0.2.4","_shasum":"1f8eec2f3eb0c122efc09b52049272069d8c4d2b","_from":".","_npmVersion":"2.5.0","_nodeVersion":"1.3.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"1f8eec2f3eb0c122efc09b52049272069d8c4d2b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-0.2.4.tgz"},"directories":{}},"0.3.0":{"name":"postcss-simple-vars","version":"0.3.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"dependencies":{"postcss":"^4.1.9"},"devDependencies":{"gulp-eslint":"0.11.1","gulp-mocha":"2.0.1","mocha":"2.2.4","chai":"2.3.0","gulp":"3.8.11"},"scripts":{"test":"gulp"},"gitHead":"fcec6e37ad3ea5b95618bcead3b1231f58ed8675","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars#readme","_id":"postcss-simple-vars@0.3.0","_shasum":"53c54f19d3597997819a8215e485e52da48bbe75","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"dist":{"shasum":"53c54f19d3597997819a8215e485e52da48bbe75","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-0.3.0.tgz"},"directories":{}},"1.0.0":{"name":"postcss-simple-vars","version":"1.0.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"dependencies":{"postcss":"^5.0.2"},"devDependencies":{"gulp-eslint":"1.0.0","gulp-mocha":"2.1.3","mocha":"2.2.5","chai":"3.2.0","gulp":"3.9.0"},"scripts":{"test":"gulp"},"gitHead":"9f7dd2b68f858cc3d19663229ab5163a9f66a8ce","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars#readme","_id":"postcss-simple-vars@1.0.0","_shasum":"dfc073cff9e6cc9e87d566083e0630ef92cc4026","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"dfc073cff9e6cc9e87d566083e0630ef92cc4026","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-1.0.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"1.0.1":{"name":"postcss-simple-vars","version":"1.0.1","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"dependencies":{"postcss":"^5.0.2"},"devDependencies":{"gulp-eslint":"1.0.0","gulp-mocha":"2.1.3","mocha":"2.2.5","chai":"3.2.0","gulp":"3.9.0"},"scripts":{"test":"gulp"},"gitHead":"de8c1f8194433d8f15505a186a51854965a38596","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars#readme","_id":"postcss-simple-vars@1.0.1","_shasum":"c38670dea727e7d2f5795bb5cfdd73369ad4fa11","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"c38670dea727e7d2f5795bb5cfdd73369ad4fa11","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-1.0.1.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"1.1.0":{"name":"postcss-simple-vars","version":"1.1.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"dependencies":{"postcss":"^5.0.10"},"devDependencies":{"gulp-eslint":"1.0.0","gulp-mocha":"2.1.3","mocha":"2.3.3","chai":"3.4.0","gulp":"3.9.0"},"scripts":{"test":"gulp"},"gitHead":"a8628dc22dd633b6e374540fd7ebbbe0b72ec32e","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars#readme","_id":"postcss-simple-vars@1.1.0","_shasum":"cd9ec8eb27cbb6f43a58ce540a23e93af8bca6b4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"cd9ec8eb27cbb6f43a58ce540a23e93af8bca6b4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-1.1.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"1.2.0":{"name":"postcss-simple-vars","version":"1.2.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"dependencies":{"postcss":"^5.0.13"},"devDependencies":{"eslint":"1.10.3","ava":"0.8.0"},"scripts":{"test":"ava && eslint *.js"},"gitHead":"c76a09cf6e1cdfb47a0b15a4f6dce3e9cd1fe996","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars#readme","_id":"postcss-simple-vars@1.2.0","_shasum":"2e6689921144b74114e765353275a3c32143f150","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"2e6689921144b74114e765353275a3c32143f150","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-1.2.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"directories":{}},"2.0.0":{"name":"postcss-simple-vars","version":"2.0.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"dependencies":{"postcss":"^5.0.21"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"2.10.2","ava":"0.14.0"},"scripts":{"test":"ava && eslint *.js"},"eslintConfig":{"extends":"eslint-config-postcss/es5"},"gitHead":"acef74f4bfbe1fad7f481e78cae9a0fab147d4d1","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars#readme","_id":"postcss-simple-vars@2.0.0","_shasum":"d0a1091b0da22b79507028f7b22b976c0a60b8d5","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.1.0","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"d0a1091b0da22b79507028f7b22b976c0a60b8d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-2.0.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/postcss-simple-vars-2.0.0.tgz_1463511217886_0.22271207300946116"},"directories":{}},"3.0.0":{"name":"postcss-simple-vars","version":"3.0.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"dependencies":{"postcss":"^5.0.21"},"devDependencies":{"eslint-config-postcss":"2.0.2","eslint":"2.13.1","ava":"0.15.2"},"scripts":{"test":"ava && eslint *.js"},"eslintConfig":{"extends":"eslint-config-postcss/es5"},"gitHead":"c3ddb69f7af9a5326d19fbe778474594d209186b","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars#readme","_id":"postcss-simple-vars@3.0.0","_shasum":"1fa4ccb4b7151d9f0d52fb8ea19a15c1319599d6","_from":".","_npmVersion":"3.9.5","_nodeVersion":"6.2.2","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"1fa4ccb4b7151d9f0d52fb8ea19a15c1319599d6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-3.0.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/postcss-simple-vars-3.0.0.tgz_1467060962080_0.8584885105956346"},"directories":{}},"3.1.0":{"name":"postcss-simple-vars","version":"3.1.0","description":"PostCSS plugin for Sass-like variables","keywords":["postcss","css","postcss-plugin","sass","variables","vars"],"author":{"name":"Andrey Sitnik","email":"andrey@sitnik.ru"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-simple-vars.git"},"dependencies":{"postcss":"^5.2.16"},"devDependencies":{"eslint":"^3.18.0","eslint-config-postcss":"2.0.2","jest":"^19.0.2"},"scripts":{"test":"jest && eslint *.js"},"eslintConfig":{"extends":"eslint-config-postcss/es5","env":{"jest":true}},"gitHead":"819b7beab86031ff7e0f66093ed515833c7305df","bugs":{"url":"https://github.com/postcss/postcss-simple-vars/issues"},"homepage":"https://github.com/postcss/postcss-simple-vars#readme","_id":"postcss-simple-vars@3.1.0","_shasum":"62c0657214ef1f43a3c5893ade89de414f31b6ff","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.3","_npmUser":{"name":"ai","email":"andrey@sitnik.ru"},"dist":{"shasum":"62c0657214ef1f43a3c5893ade89de414f31b6ff","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-simple-vars/-/postcss-simple-vars-3.1.0.tgz"},"maintainers":[{"name":"ai","email":"andrey@sitnik.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/postcss-simple-vars-3.1.0.tgz_1490347777256_0.19643917516805232"},"directories":{}}},"name":"postcss-simple-vars","time":{"modified":"2017-03-24T09:29:38.076Z","created":"2015-02-01T04:48:25.739Z","0.1.0":"2015-02-01T04:48:25.739Z","0.2.0":"2015-02-05T04:37:01.222Z","0.2.1":"2015-02-05T04:52:32.350Z","0.2.2":"2015-02-06T04:45:17.863Z","0.2.3":"2015-02-06T04:53:32.871Z","0.2.4":"2015-02-24T13:52:35.872Z","0.3.0":"2015-05-09T01:04:55.222Z","1.0.0":"2015-08-23T12:16:02.483Z","1.0.1":"2015-09-15T17:14:25.618Z","1.1.0":"2015-10-31T12:32:09.162Z","1.2.0":"2015-12-22T15:08:58.065Z","2.0.0":"2016-05-17T18:53:40.539Z","3.0.0":"2016-06-27T20:56:03.029Z","3.1.0":"2017-03-24T09:29:38.076Z"},"readmeFilename":"README.md","homepage":"https://github.com/postcss/postcss-simple-vars#readme"}