{"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"moox","email":"m@moox.io"}],"keywords":["css","calculation","calc"],"dist-tags":{"latest":"2.0.5"},"author":{"name":"Maxime Thirouin"},"description":"Reduce CSS calc() function to the maximum","readme":"# reduce-css-calc [![Build Status](https://travis-ci.org/MoOx/reduce-css-calc.png)](https://travis-ci.org/MoOx/reduce-css-calc)\n\n> Reduce CSS calc() function to the maximum.\n\nParticularly useful for packages like [rework-calc](https://github.com/reworkcss/rework-calc) or [postcss-calc](https://github.com/postcss/postcss-calc).\n\n## Installation\n\n```console\n$ npm install reduce-css-calc\n```\n\n## Usage\n\n### `var reducedString = reduceCSSCalc(string, precision)`\n\n```javascript\nvar reduceCSSCalc = require('reduce-css-calc')\n\nreduceCSSCalc(\"calc(1 + 1)\")\n// 2\n\nreduceCSSCalc(\"calc((6 / 2) - (4 * 2) + 1)\")\n// -4\n\nreduceCSSCalc(\"calc(1/3)\")\n// 0.33333\n\nreduceCSSCalc(\"calc(1/3)\", 10)\n// 0.3333333333\n\nreduceCSSCalc(\"calc(3rem * 2 - 1rem)\")\n// 5rem\n\nreduceCSSCalc(\"calc(2 * 50%)\")\n// 100%\n\nreduceCSSCalc(\"calc(120% * 50%)\")\n// 60%\n\nreduceCSSCalc(\"a calc(1 + 1) b calc(1 - 1) c\")\n// a 2 b 0 c\n\nreduceCSSCalc(\"calc(calc(calc(1rem * 0.75) * 1.5) - 1rem)\")\n// 0.125rem\n\nreduceCSSCalc(\"calc(calc(calc(1rem * 0.75) * 1.5) - 1px)\")\n// calc(1.125rem - 1px)\n\nreduceCSSCalc(\"-moz-calc(100px / 2)\")\n// 50px\n\nreduceCSSCalc(\"-moz-calc(50% - 2em)\")\n// -moz-calc(50% - 2em)\n```\n\nSee [unit tests](test/index.js) for others examples.\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/MoOx/reduce-css-calc.git\n$ git checkout -b patch-1\n$ npm install\n$ npm test\n```\n\n## [Changelog](CHANGELOG.md)\n\n## [License](LICENSE-MIT)\n","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"license":"MIT","versions":{"1.0.0":{"name":"reduce-css-calc","version":"1.0.0","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/MoOx/reduce-css-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"balanced-match":"~0.1.0"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.0","tap-colorize":"^1.2.0","tape":"^2.13.4"},"scripts":{"jscc":"jscs *.js","jshint":"jshint  *.js --reporter node_modules/jshint-stylish/stylish.js","test":"npm run jscs && npm run jshint && tape test | tap-colorize"},"gitHead":"bfb7a2c388f26072011620441f389526df5bf2c5","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc","_id":"reduce-css-calc@1.0.0","_shasum":"3d1e7efc4fbbaff8550128b11691cd20f471151f","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"3d1e7efc4fbbaff8550128b11691cd20f471151f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.0.0.tgz"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.1.0":{"name":"reduce-css-calc","version":"1.1.0","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/MoOx/reduce-css-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"balanced-match":"~0.1.0","reduce-function-call":"^1.0.0"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.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":"94fd9d956c9b68aea23108a42df500a7b1259bd8","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc","_id":"reduce-css-calc@1.1.0","_shasum":"dfdf46138faa0c1f77506a06f0d46247a4c23c00","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"dfdf46138faa0c1f77506a06f0d46247a4c23c00","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.1.0.tgz"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.1.1":{"name":"reduce-css-calc","version":"1.1.1","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/MoOx/reduce-css-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"balanced-match":"~0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.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":"17304f38891812f30566a6ecfad0d3212ca9c096","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc","_id":"reduce-css-calc@1.1.1","_shasum":"a3d47416c149871f424fba7a42121b74b3448e0f","_from":".","_npmVersion":"1.5.0-alpha-1","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"a3d47416c149871f424fba7a42121b74b3448e0f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.1.1.tgz"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.1.2":{"name":"reduce-css-calc","version":"1.1.2","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/MoOx/reduce-css-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"balanced-match":"~0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.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":"7ba6f45ef3849c7b0acff9bdf9298a04aa1d6572","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc","_id":"reduce-css-calc@1.1.2","_shasum":"2ddaa8b2926488035ca19cd81ab6a0edbdbc810e","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"2ddaa8b2926488035ca19cd81ab6a0edbdbc810e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.1.2.tgz"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.1.3":{"name":"reduce-css-calc","version":"1.1.3","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"MoOx"},"license":"MIT","repository":{"type":"git","url":"https://github.com/MoOx/reduce-css-calc.git"},"files":["CHANGELOG.md","LICENSE","README.md","index.js"],"dependencies":{"balanced-match":"~0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","jshint-stylish":"^0.4.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":"a97f2ef64f32187564d221b18cac3594b8268003","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc","_id":"reduce-css-calc@1.1.3","_shasum":"103c9f75ee04f2aa3d13dc68c0babbb096b1b51f","_from":".","_npmVersion":"2.0.0-alpha-5","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"103c9f75ee04f2aa3d13dc68c0babbb096b1b51f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.1.3.tgz"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.1.4":{"name":"reduce-css-calc","version":"1.1.4","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/MoOx/reduce-css-calc.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"balanced-match":"^0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"213332b2debb7d2d4fcb9829b74b7668c1ee13c3","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc","_id":"reduce-css-calc@1.1.4","_shasum":"c2bc214296e9b32184ab359273b89ef9ec87cf0a","_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":"c2bc214296e9b32184ab359273b89ef9ec87cf0a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.1.4.tgz"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.2.0":{"name":"reduce-css-calc","version":"1.2.0","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"https://github.com/MoOx/reduce-css-calc.git"},"files":["CHANGELOG.md","LICENSE","index.js"],"dependencies":{"balanced-match":"^0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test"},"gitHead":"15d749660ba5aabb7b2ae3eec10722ffd87038cf","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc","_id":"reduce-css-calc@1.2.0","_shasum":"e191e362e93da4c0f0f992dea12932a2e10db191","_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":"e191e362e93da4c0f0f992dea12932a2e10db191","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.0.tgz"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.2.1":{"name":"reduce-css-calc","version":"1.2.1","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"0f3e0219d64c77fe804d5e5978c42cbb6b6df75b","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.2.1","_shasum":"4440c32484183df23aae7986e16329560c1a86ad","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"moox","email":"m@moox.io"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"dist":{"shasum":"4440c32484183df23aae7986e16329560c1a86ad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.1.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.2.1.tgz_1456122870430_0.9556315520312637"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.2.2":{"name":"reduce-css-calc","version":"1.2.2","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"b924f5d281e9f9fa5ab65f3443caa0d7c22df2ab","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.2.2","_shasum":"7309cca38352a15d1626fa599466f79b3673144d","_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":"7309cca38352a15d1626fa599466f79b3673144d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.2.2.tgz_1461060890461_0.7142742446158081"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.2.3":{"name":"reduce-css-calc","version":"1.2.3","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"0add031acb928ddfeabdbcf9a5ab3a72529fbfa6","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.2.3","_shasum":"844e810ea621d6bc224317214ef0a2071f34e89a","_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":"844e810ea621d6bc224317214ef0a2071f34e89a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.2.3.tgz_1461864533964_0.35036339331418276"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.2.4":{"name":"reduce-css-calc","version":"1.2.4","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.1.0","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"da7bce7d90af3ebde50295f291fa445c7b56460e","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.2.4","_shasum":"e585e484404801c8003afff6b936d96bb7611b3f","_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":"e585e484404801c8003afff6b936d96bb7611b3f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.2.4.tgz_1465477145083_0.5114698412362486"},"deprecated":"Please update to reduce-css-calc 1.2.5 or higher to avoid an arbitrary code execution issue","directories":{}},"1.2.5":{"name":"reduce-css-calc","version":"1.2.5","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.1.0","math-expression-evaluator":"^1.2.9","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"449f5d26b504289366f3efe7827771dfe297ba6d","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.2.5","_shasum":"197254fd7fa904e56d74be268baa19ce7894253e","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"moox","email":"m@moox.io"},"dist":{"shasum":"197254fd7fa904e56d74be268baa19ce7894253e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.5.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.2.5.tgz_1471845711330_0.24459409667178988"},"directories":{}},"1.2.6":{"name":"reduce-css-calc","version":"1.2.6","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.1.0","math-expression-evaluator":"^1.2.9","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"8c76f2fb457cd40b1ca564850755f2a6f467f2a0","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.2.6","_shasum":"5541421944176f1e545322c453a4db30b480ad52","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"moox","email":"m@moox.io"},"dist":{"shasum":"5541421944176f1e545322c453a4db30b480ad52","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.6.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.2.6.tgz_1471856262371_0.6853115484118462"},"directories":{}},"1.2.7":{"name":"reduce-css-calc","version":"1.2.7","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.1.0","math-expression-evaluator":"^1.2.9","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"7e55aead6d9261e242b856cd027f9c2e31ff5859","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.2.7","_shasum":"e1d5bec79379fa9ad2f109a9cb0c649a9fb0c4fd","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"moox","email":"m@moox.io"},"dist":{"shasum":"e1d5bec79379fa9ad2f109a9cb0c649a9fb0c4fd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.7.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.2.7.tgz_1471861173138_0.13929635914973915"},"directories":{}},"1.2.8":{"name":"reduce-css-calc","version":"1.2.8","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.4.2","math-expression-evaluator":"^1.2.14","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"f8b50e39ec0ae9e023e9529ffd00fb07c48f1b05","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.2.8","_shasum":"ee054cf300ec4c1a7c0cf40af0e1ed8c9a6fb377","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"moox","email":"m@moox.io"},"dist":{"shasum":"ee054cf300ec4c1a7c0cf40af0e1ed8c9a6fb377","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.2.8.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.2.8.tgz_1472206436640_0.169512661639601"},"directories":{}},"1.3.0":{"name":"reduce-css-calc","version":"1.3.0","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"files":["index.js"],"dependencies":{"balanced-match":"^0.4.2","math-expression-evaluator":"^1.2.14","reduce-function-call":"^1.0.1"},"devDependencies":{"jscs":"^1.5.9","jshint":"^2.5.2","npmpub":"^3.0.3","tape":"^2.13.4"},"scripts":{"jscs":"jscs *.js **/*.js","jshint":"jshint . --exclude node_modules","test":"npm run jscs && npm run jshint && tape test","release":"npmpub"},"gitHead":"077b6d74d3807744c2854f7ba3a60626dcfdb504","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@1.3.0","_shasum":"747c914e049614a4c9cfbba629871ad1d2927716","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"moox","email":"m@moox.io"},"dist":{"shasum":"747c914e049614a4c9cfbba629871ad1d2927716","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz"},"maintainers":[{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/reduce-css-calc-1.3.0.tgz_1472209420610_0.07836053264327347"},"directories":{}},"2.0.0":{"name":"reduce-css-calc","version":"2.0.0","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"main":"dist/index.js","files":["dist"],"scripts":{"prepublish":"npm run build && del-cli dist/__tests__","build":"del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/parser.js","pretest":"eslint src && npm run build","test":"ava dist/__tests__/"},"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"devDependencies":{"ava":"^0.18.2","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":"^3.1.4","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","jison":"^0.4.17"},"dependencies":{"css-unit-converter":"^1.1.1","postcss-value-parser":"^3.3.0"},"eslintConfig":{"parser":"babel-eslint","extends":"eslint-config-i-am-meticulous"},"gitHead":"f2b7b6ff1e88673adc8b310479e3087f653cbeb1","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@2.0.0","_shasum":"85440f8fae32aa10144a634b40bd109931e1d4b0","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"85440f8fae32aa10144a634b40bd109931e1d4b0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-2.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/reduce-css-calc-2.0.0.tgz_1494251105591_0.5801003591623157"},"directories":{}},"2.0.1":{"name":"reduce-css-calc","version":"2.0.1","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"main":"dist/index.js","files":["dist"],"scripts":{"prepublish":"npm run build && del-cli dist/__tests__","build":"del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/parser.js","pretest":"eslint src && npm run build","test":"ava dist/__tests__/"},"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"devDependencies":{"ava":"^0.18.2","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":"^3.1.4","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","jison":"^0.4.17"},"dependencies":{"css-unit-converter":"^1.1.1","postcss-value-parser":"^3.3.0"},"eslintConfig":{"parser":"babel-eslint","extends":"eslint-config-i-am-meticulous"},"gitHead":"dc09bce196a86ef1f9f732515f577fb9b0917427","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@2.0.1","_shasum":"ba63306c4320e89af19bedaa5673c23d6fd9118c","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"ba63306c4320e89af19bedaa5673c23d6fd9118c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-2.0.1.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/reduce-css-calc-2.0.1.tgz_1494258472396_0.7679502291139215"},"directories":{}},"2.0.2":{"name":"reduce-css-calc","version":"2.0.2","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"main":"dist/index.js","files":["dist"],"scripts":{"prepublish":"npm run build && del-cli dist/__tests__","build":"del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/parser.js","pretest":"eslint src && npm run build","test":"ava dist/__tests__/"},"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"devDependencies":{"ava":"^0.18.2","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":"^3.1.4","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","jison":"^0.4.17"},"dependencies":{"css-unit-converter":"^1.1.1","postcss-value-parser":"^3.3.0"},"eslintConfig":{"parser":"babel-eslint","extends":"eslint-config-i-am-meticulous"},"gitHead":"8176c078f8f81550ee00472e66cf56d0f988b955","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@2.0.2","_shasum":"d70d20540b932f144544a0175ec46590fda5492f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"d70d20540b932f144544a0175ec46590fda5492f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-2.0.2.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/reduce-css-calc-2.0.2.tgz_1494272192981_0.6907827786635607"},"directories":{}},"2.0.3":{"name":"reduce-css-calc","version":"2.0.3","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"main":"dist/index.js","files":["dist"],"scripts":{"prepublish":"npm run build && del-cli dist/__tests__","build":"del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/parser.js","pretest":"eslint src && npm run build","test":"ava dist/__tests__/"},"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"devDependencies":{"ava":"^0.18.2","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":"^3.1.4","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","jison":"^0.4.17"},"dependencies":{"css-unit-converter":"^1.1.1","postcss-value-parser":"^3.3.0"},"eslintConfig":{"parser":"babel-eslint","extends":"eslint-config-i-am-meticulous"},"gitHead":"bdf838ff4f277b4ca8fafce40ed3bdc1f447f451","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@2.0.3","_shasum":"7cc170df92a75dcb5f6373956ba5cea911ec1f35","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"7cc170df92a75dcb5f6373956ba5cea911ec1f35","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-2.0.3.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/reduce-css-calc-2.0.3.tgz_1494289584329_0.04036631528288126"},"directories":{}},"2.0.4":{"name":"reduce-css-calc","version":"2.0.4","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"main":"dist/index.js","files":["dist"],"scripts":{"prepublish":"npm run build && del-cli dist/__tests__","build":"del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/parser.js","pretest":"eslint src && npm run build","test":"ava dist/__tests__/"},"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"devDependencies":{"ava":"^0.18.2","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":"^3.1.4","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","jison":"^0.4.17"},"dependencies":{"css-unit-converter":"^1.1.1","postcss-value-parser":"^3.3.0"},"eslintConfig":{"parser":"babel-eslint","extends":"eslint-config-i-am-meticulous"},"gitHead":"78dd513e19d88e562fe3b4069f30614c7dab384b","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@2.0.4","_shasum":"91f161c6959f4922c8469b46af2fd908e402a1ac","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"91f161c6959f4922c8469b46af2fd908e402a1ac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-2.0.4.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/reduce-css-calc-2.0.4.tgz_1494348266885_0.3630853886716068"},"directories":{}},"2.0.5":{"name":"reduce-css-calc","version":"2.0.5","description":"Reduce CSS calc() function to the maximum","keywords":["css","calculation","calc"],"main":"dist/index.js","files":["dist"],"scripts":{"prepublish":"npm run build && del-cli dist/__tests__","build":"del-cli dist && cross-env BABEL_ENV=publish babel src --out-dir dist && jison parser.jison -o dist/parser.js","pretest":"eslint src && npm run build","test":"ava dist/__tests__/"},"author":{"name":"Maxime Thirouin"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/MoOx/reduce-css-calc.git"},"devDependencies":{"ava":"^0.18.2","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":"^3.1.4","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","jison":"^0.4.17"},"dependencies":{"css-unit-converter":"^1.1.1","postcss-value-parser":"^3.3.0"},"eslintConfig":{"parser":"babel-eslint","extends":"eslint-config-i-am-meticulous"},"gitHead":"b95919adc3bd7d42cef1b1dce912d5dad781c49f","bugs":{"url":"https://github.com/MoOx/reduce-css-calc/issues"},"homepage":"https://github.com/MoOx/reduce-css-calc#readme","_id":"reduce-css-calc@2.0.5","_shasum":"33c97838c5d4c711a5c14ef85ce4fde41483f7bd","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"beneb","email":"beneb.info@gmail.com"},"dist":{"shasum":"33c97838c5d4c711a5c14ef85ce4fde41483f7bd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/reduce-css-calc/-/reduce-css-calc-2.0.5.tgz"},"maintainers":[{"name":"beneb","email":"beneb.info@gmail.com"},{"name":"moox","email":"m@moox.io"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/reduce-css-calc-2.0.5.tgz_1494603828915_0.36635913816280663"},"directories":{}}},"name":"reduce-css-calc","time":{"modified":"2017-05-12T15:43:50.777Z","created":"2014-08-04T08:25:30.858Z","1.0.0":"2014-08-04T08:25:30.858Z","1.1.0":"2014-08-06T05:32:46.377Z","1.1.1":"2014-08-06T07:06:44.886Z","1.1.2":"2014-08-10T18:51:22.835Z","1.1.3":"2014-08-13T10:18:56.770Z","1.1.4":"2014-11-12T05:38:52.563Z","1.2.0":"2014-11-25T06:14:42.959Z","1.2.1":"2016-02-22T06:34:33.737Z","1.2.2":"2016-04-19T10:14:52.007Z","1.2.3":"2016-04-28T17:28:56.490Z","1.2.4":"2016-06-09T12:59:07.470Z","1.2.5":"2016-08-22T06:01:52.789Z","1.2.6":"2016-08-22T08:57:43.882Z","1.2.7":"2016-08-22T10:19:34.773Z","1.2.8":"2016-08-26T10:13:58.276Z","1.3.0":"2016-08-26T11:03:41.469Z","2.0.0":"2017-05-08T13:45:07.063Z","2.0.1":"2017-05-08T15:47:53.376Z","2.0.2":"2017-05-08T19:36:34.524Z","2.0.3":"2017-05-09T00:26:26.264Z","2.0.4":"2017-05-09T16:44:28.144Z","2.0.5":"2017-05-12T15:43:50.777Z"},"readmeFilename":"README.md","homepage":"https://github.com/MoOx/reduce-css-calc#readme"}