{"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"jonathantneal","email":"jonathantneal@hotmail.com"},{"name":"moox","email":"m@moox.io"},{"name":"semigradsky","email":"semigradskyd@gmail.com"}],"keywords":["css","postcss","postcss-plugin","calculation","calc"],"dist-tags":{"latest":"6.0.0"},"author":{"name":"Maxime Thirouin"},"description":"PostCSS plugin to reduce calc()","readme":"# postcss-calc [![Build Status](https://travis-ci.org/postcss/postcss-calc.png)](https://travis-ci.org/postcss/postcss-calc)\n\n> [PostCSS](https://github.com/postcss/postcss) plugin to reduce `calc()`.\n\nThis plugin reduce `calc()` references whenever it's possible.\nThis can be particularly useful with the [postcss-custom-properties](https://github.com/postcss/postcss-custom-properties) plugin.\n\n**Note:** When multiple units are mixed together in the same expression, the `calc()` statement is left as is, to fallback to the [w3c calc() feature](http://www.w3.org/TR/css3-values/#calc).\n\n## Installation\n\n```console\n$ npm install postcss-calc\n```\n\n## Usage\n\n```js\n// dependencies\nvar fs = require(\"fs\")\nvar postcss = require(\"postcss\")\nvar calc = require(\"postcss-calc\")\n\n// css to be processed\nvar css = fs.readFileSync(\"input.css\", \"utf8\")\n\n// process css\nvar output = postcss()\n  .use(calc())\n  .process(css)\n  .css\n```\n\n**Example** (with [postcss-custom-properties](https://github.com/postcss/postcss-custom-properties) enabled as well):\n\n```js\n// dependencies\nvar fs = require(\"fs\")\nvar postcss = require(\"postcss\")\nvar customProperties = require(\"postcss-custom-properties\")\nvar calc = require(\"postcss-calc\")\n\n// css to be processed\nvar css = fs.readFileSync(\"input.css\", \"utf8\")\n\n// process css\nvar output = postcss()\n  .use(customProperties())\n  .use(calc())\n  .process(css)\n  .css\n```\n\nUsing this `input.css`:\n\n```css\n:root {\n  --main-font-size: 16px;\n}\n\nbody {\n  font-size: var(--main-font-size);\n}\n\nh1 {\n  font-size: calc(var(--main-font-size) * 2);\n  height: calc(100px - 2em);\n  margin-bottom: calc(\n      var(--main-font-size)\n      * 1.5\n    )\n}\n```\n\nyou will get:\n\n```css\nbody {\n  font-size: 16px\n}\n\nh1 {\n  font-size: 32px;\n  height: calc(100px - 2em);\n  margin-bottom: 24px\n}\n```\n\nCheckout [tests](test) for more examples.\n\n### Options\n\n#### `precision` (default: `5`)\n\nAllow you to define the precision for decimal numbers.\n\n```js\nvar out = postcss()\n  .use(calc({precision: 10}))\n  .process(css)\n  .css\n```\n\n#### `preserve` (default: `false`)\n\nAllow you to preserve calc() usage in output so browsers will handle decimal precision themselves.\n\n```js\nvar out = postcss()\n  .use(calc({preserve: true}))\n  .process(css)\n  .css\n```\n\n#### `warnWhenCannotResolve` (default: `false`)\n\nAdds warnings when calc() are not reduced to a single value.\n\n```js\nvar out = postcss()\n  .use(calc({warnWhenCannotResolve: true}))\n  .process(css)\n  .css\n```\n\n#### `mediaQueries` (default: `false`)\n\nAllows calc() usage as part of media query declarations.\n\n```js\nvar out = postcss()\n  .use(calc({mediaQueries: true}))\n  .process(css)\n  .css\n```\n\n#### `selectors` (default: `false`)\n\nAllows calc() usage as part of selectors.\n\n```js\nvar out = postcss()\n  .use(calc({selectors: true}))\n  .process(css)\n  .css\n```\n\nExample:\n\n```css\ndiv[data-size=\"calc(3*3)\"] {\n  width: 100px;\n}\n```\n\n---\n\n## Contributing\n\nWork on a branch, install dev-dependencies, respect coding style & run tests before submitting a bug fix or a feature.\n\n```console\n$ git clone https://github.com/postcss/postcss-calc.git\n$ git checkout -b patch-1\n$ npm install\n$ npm test\n```\n\n## [Changelog](CHANGELOG.md)\n\n## [License](LICENSE)\n","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"users":{"simplesessions":true,"asaupup":true},"bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"license":"MIT","versions":{"1.0.0":{"name":"postcss-calc","version":"1.0.0","description":"Reduce calc() plugin for PostCSS","keywords":["css","postcss","postcss-plugins","calculation","calc"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"reduce-css-calc":"^1.0.0"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.0","postcss":"^2.1.0","postcss-custom-properties":"~0.1.0","tap-colorize":"^1.2.0","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize"},"gitHead":"701023f91037ae2c9e72fba48424830e985a9b05","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc","_id":"postcss-calc@1.0.0","_shasum":"edcff91e49d36d1fc746ba1da393d753a441a796","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"edcff91e49d36d1fc746ba1da393d753a441a796","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-1.0.0.tgz"},"directories":{}},"2.0.0":{"name":"postcss-calc","version":"2.0.0","description":"Reduce calc() plugin for PostCSS","keywords":["css","postcss","postcss-plugins","calculation","calc"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"reduce-css-calc":"^1.0.0"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.0","postcss":"^2.1.0","postcss-custom-properties":"~0.1.0","tap-colorize":"^1.2.0","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize"},"gitHead":"a61852e8f8103e41bfa336765b9cf7250f2c15ea","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc","_id":"postcss-calc@2.0.0","_shasum":"16b4fafcf68cb1991b3bad032504888717fc701d","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"16b4fafcf68cb1991b3bad032504888717fc701d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"postcss-calc","version":"2.0.1","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugins","calculation","calc"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"reduce-css-calc":"^1.1.2"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.0","postcss":"^2.1.0","postcss-custom-properties":"~0.1.0","tap-colorize":"^1.2.0","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules --reporter node_modules/jshint-stylish/stylish.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize"},"gitHead":"e2776b714899972235a834302246798ea3de6315","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc","_id":"postcss-calc@2.0.1","_shasum":"4b67e1f84271f3716aa0435e501b7d0e713f6fe4","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"4b67e1f84271f3716aa0435e501b7d0e713f6fe4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-2.0.1.tgz"},"directories":{}},"2.1.0":{"name":"postcss-calc","version":"2.1.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugins","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"reduce-css-calc":"^1.1.2"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^2.2.5","postcss-custom-properties":"^0.4.0","tape":"^3.0.0"},"scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"gitHead":"d66cf4e9a455097cef0f1e1cd6c7fe374f28cd58","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc","_id":"postcss-calc@2.1.0","_shasum":"83bb7f80387016d0cf6c0477f343a3f5eae56747","_from":".","_npmVersion":"2.0.2","_nodeVersion":"0.10.32","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"83bb7f80387016d0cf6c0477f343a3f5eae56747","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-2.1.0.tgz"},"directories":{}},"3.0.0":{"name":"postcss-calc","version":"3.0.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugins","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-calc.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"postcss-message-helpers":"^1.1.0","reduce-css-calc":"^1.2.0"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^3.0.0","postcss-custom-properties":"^2.0.0","tape":"^3.0.0"},"scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"gitHead":"39c3aade21be4570407cd8a2f5346f96bf394411","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc","_id":"postcss-calc@3.0.0","_shasum":"c28a9d09e6a63f92592071bfc0ff86251dc8c0b9","_from":".","_npmVersion":"2.1.6","_nodeVersion":"0.10.33","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"c28a9d09e6a63f92592071bfc0ff86251dc8c0b9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-3.0.0.tgz"},"directories":{}},"4.0.0":{"name":"postcss-calc","version":"4.0.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugins","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-calc.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.0"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^4.0.2","postcss-custom-properties":"^3.0.0","tape":"^3.0.0"},"scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"gitHead":"48b84a2a188fad2a2257cffcc0e7a6da31537acb","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc","_id":"postcss-calc@4.0.0","_shasum":"dab27383123bf32653ea7085c034d505270e2dee","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.10.35","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"dab27383123bf32653ea7085c034d505270e2dee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-4.0.0.tgz"},"directories":{}},"4.0.1":{"name":"postcss-calc","version":"4.0.1","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugins","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/postcss/postcss-calc.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.0"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss":"^4.0.2","postcss-custom-properties":"^3.0.0","tape":"^3.0.0"},"scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"gitHead":"51ee3f8f2e3a01524097a616afeaa883572accd4","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc","_id":"postcss-calc@4.0.1","_shasum":"bedeb8895b9e29b068b33096fc7c3c280aa8f0b2","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"bedeb8895b9e29b068b33096fc7c3c280aa8f0b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-4.0.1.tgz"},"directories":{}},"4.1.0":{"name":"postcss-calc","version":"4.1.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugin","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.0","postcss":"^4.1.11"},"devDependencies":{"jscs":"^1.6.2","jshint":"^2.5.6","postcss-custom-properties":"^3.0.0","tape":"^3.0.0"},"scripts":{"lint":"jscs *.js **/*.js && jshint . --exclude-path .gitignore","test":"npm run lint && tape test"},"gitHead":"1493329ca5458c1fbc77f590139910857543ac3d","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc#readme","_id":"postcss-calc@4.1.0","_shasum":"bee7ffc928c7986999eef17b2dd8970c8937d472","_from":".","_npmVersion":"2.9.0","_nodeVersion":"2.0.1","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"bee7ffc928c7986999eef17b2dd8970c8937d472","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-4.1.0.tgz"},"directories":{}},"5.0.0":{"name":"postcss-calc","version":"5.0.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugin","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"files":["index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.0","postcss":"^5.0.2"},"devDependencies":{"eslint":"^1.0.0","postcss-custom-properties":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"d8e2755b02dbf8930ecb75a40a4f3f68f74a1d97","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc#readme","_id":"postcss-calc@5.0.0","_shasum":"234f0600e3ded531f016ad045ed46b89aef552c1","_from":".","_npmVersion":"2.13.3","_nodeVersion":"3.0.0","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"234f0600e3ded531f016ad045ed46b89aef552c1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-5.0.0.tgz"},"directories":{}},"5.1.0":{"name":"postcss-calc","version":"5.1.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugin","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"files":["index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.0","postcss":"^5.0.2"},"devDependencies":{"eslint":"^1.0.0","postcss-custom-properties":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"4f032550ee9fab22929d0b06f3a9ff377d0de693","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc#readme","_id":"postcss-calc@5.1.0","_shasum":"9322425e77d09b53bc32e5d3e969c47c36eed26f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"9322425e77d09b53bc32e5d3e969c47c36eed26f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-5.1.0.tgz"},"directories":{}},"5.2.0":{"name":"postcss-calc","version":"5.2.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugin","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"files":["index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.0","postcss":"^5.0.2"},"devDependencies":{"eslint":"^1.0.0","postcss-custom-properties":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test"},"gitHead":"0ca9351da633dabd2380e7c5007c35209d90f7a8","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc#readme","_id":"postcss-calc@5.2.0","_shasum":"0b6153b79390ba3b7b98eaddff63f179ffe6faf5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"0b6153b79390ba3b7b98eaddff63f179ffe6faf5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-5.2.0.tgz"},"directories":{}},"5.2.1":{"name":"postcss-calc","version":"5.2.1","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugin","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"files":["index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.0","postcss":"^5.0.2"},"devDependencies":{"eslint":"^1.0.0","npmpub":"^3.1.0","postcss-custom-properties":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test","release":"npmpub"},"gitHead":"82d259eb1c077134012e0cc8493365bd76a11f0b","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc#readme","_id":"postcss-calc@5.2.1","_shasum":"42147e5589a4baf658688764d76c6a097804652e","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"42147e5589a4baf658688764d76c6a097804652e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-5.2.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/postcss-calc-5.2.1.tgz_1460319882540_0.6787811757531017"},"directories":{}},"5.3.0":{"name":"postcss-calc","version":"5.3.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugin","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"files":["index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.0","postcss":"^5.0.2"},"devDependencies":{"eslint":"^1.0.0","npmpub":"^3.1.0","postcss-custom-properties":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test","release":"npmpub"},"gitHead":"2121c958921c7a35c76e1f58ab43129268db01be","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc#readme","_id":"postcss-calc@5.3.0","_shasum":"396a6ef5f399e1873f847e8f2fd5ee17fc1e1fd8","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"396a6ef5f399e1873f847e8f2fd5ee17fc1e1fd8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-5.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-calc-5.3.0.tgz_1468212888673_0.9496042632963508"},"directories":{}},"5.3.1":{"name":"postcss-calc","version":"5.3.1","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugin","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"files":["index.js"],"dependencies":{"postcss-message-helpers":"^2.0.0","reduce-css-calc":"^1.2.6","postcss":"^5.0.2"},"devDependencies":{"eslint":"^1.0.0","npmpub":"^3.1.0","postcss-custom-properties":"^5.0.0","tape":"^3.0.0"},"scripts":{"test":"eslint . && tape test","release":"npmpub"},"gitHead":"831090af68ffb8c8d4e11cd53e557e7c4b8674b2","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc#readme","_id":"postcss-calc@5.3.1","_shasum":"77bae7ca928ad85716e2fda42f261bf7c1d65b5e","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"moox","email":"m@moox.io"},"dist":{"shasum":"77bae7ca928ad85716e2fda42f261bf7c1d65b5e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-5.3.1.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/postcss-calc-5.3.1.tgz_1471856374826_0.9366503700148314"},"directories":{}},"6.0.0":{"name":"postcss-calc","version":"6.0.0","description":"PostCSS plugin to reduce calc()","keywords":["css","postcss","postcss-plugin","calculation","calc"],"main":"dist/index.js","files":["dist","LICENSE"],"scripts":{"prepublish":"npm run build && del-cli dist/__tests__","build":"del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist","pretest":"eslint src && npm run build","test":"ava src/__tests__/"},"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/postcss/postcss-calc.git"},"eslintConfig":{"parser":"babel-eslint","extends":"eslint-config-i-am-meticulous"},"devDependencies":{"ava":"^0.19.1","babel-cli":"^6.18.0","babel-core":"^6.21.0","babel-eslint":"^7.1.1","babel-plugin-add-module-exports":"^0.2.1","babel-preset-env":"^1.4.0","babel-register":"^6.18.0","cross-env":"^4.0.0","del-cli":"^0.2.1","eslint":"^3.12.2","eslint-config-i-am-meticulous":"^6.0.1","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0"},"dependencies":{"css-unit-converter":"^1.1.1","postcss":"^6.0.0","postcss-selector-parser":"^2.2.2","reduce-css-calc":"^2.0.0"},"ava":{"require":"babel-register"},"gitHead":"b20182e34bbc00d23e16c1796c78cd32cd612c5c","bugs":{"url":"https://github.com/postcss/postcss-calc/issues"},"homepage":"https://github.com/postcss/postcss-calc#readme","_id":"postcss-calc@6.0.0","_shasum":"b681b279c6d24fbe0e33ed9045803705445d613b","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"b681b279c6d24fbe0e33ed9045803705445d613b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/postcss-calc/-/postcss-calc-6.0.0.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/postcss-calc-6.0.0.tgz_1494275376408_0.32476285588927567"},"directories":{}}},"name":"postcss-calc","time":{"modified":"2017-07-04T15:14:02.035Z","created":"2014-08-04T10:19:24.232Z","1.0.0":"2014-08-04T10:19:24.232Z","2.0.0":"2014-08-06T07:11:47.541Z","2.0.1":"2014-08-10T18:57:42.197Z","2.1.0":"2014-10-15T08:23:49.910Z","3.0.0":"2014-11-25T06:41:49.380Z","4.0.0":"2015-01-26T21:10:16.403Z","4.0.1":"2015-04-09T05:17:51.972Z","4.1.0":"2015-06-03T12:23:32.810Z","5.0.0":"2015-08-25T05:41:33.033Z","5.1.0":"2016-01-07T08:10:27.681Z","5.2.0":"2016-01-08T09:20:46.309Z","5.2.1":"2016-04-10T20:24:43.693Z","5.3.0":"2016-07-11T04:54:51.323Z","5.3.1":"2016-08-22T08:59:36.603Z","6.0.0":"2017-05-08T20:29:37.369Z"},"readmeFilename":"README.md","homepage":"https://github.com/postcss/postcss-calc#readme"}