{"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"keywords":[],"dist-tags":{"latest":"5.0.5","beta":"5.0.0-beta.0"},"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"description":"Run scripts that set and use environment variables across platforms","readme":"# cross-env\n\nRun scripts that set and use environment variables across platforms\n\n[![Travis Build Status][build-badge]][build]\n[![AppVeyor Build Status][win-build-badge]][win-build]\n[![Code Coverage][coverage-badge]][coverage]\n[![Dependencies][dependencyci-badge]][dependencyci]\n[![version][version-badge]][package]\n[![node-version][node-version-badge]][node]\n[![downloads][downloads-badge]][npm-stat]\n\n[![MIT License][license-badge]][LICENSE]\n[![All Contributors](https://img.shields.io/badge/all_contributors-13-orange.svg?style=flat-square)](#contributors)\n[![PRs Welcome][prs-badge]][prs]\n[![Donate][donate-badge]][donate]\n[![Code of Conduct][coc-badge]][coc]\n[![Roadmap][roadmap-badge]][roadmap]\n[![Examples][examples-badge]][examples]\n\n[![Watch on GitHub][github-watch-badge]][github-watch]\n[![Star on GitHub][github-star-badge]][github-star]\n[![Tweet][twitter-badge]][twitter]\n\n[![Sponsor](https://app.codesponsor.io/embed/PKGFLnhDiFvsUA5P4kAXfiPs/kentcdodds/cross-env.svg)](https://app.codesponsor.io/link/PKGFLnhDiFvsUA5P4kAXfiPs/kentcdodds/cross-env)\n\n## The problem\n\nMost Windows command prompts will choke when you set environment variables with\n`NODE_ENV=production` like that. (The exception is [Bash on Windows][win-bash],\nwhich uses native Bash.) Similarly, there's a difference in how windows and\nPOSIX commands utilize environment variables. With POSIX, you use: `$ENV_VAR`\nand on windows you use `%ENV_VAR%`.\n\n## This solution\n\n`cross-env` makes it so you can have a single command without worrying about\nsetting or using the environment variable properly for the platform. Just set it\nlike you would if it's running on a POSIX system, and `cross-env` will take care\nof setting it properly.\n\n## Installation\n\nThis module is distributed via [npm][npm] which is bundled with [node][node] and\nshould be installed as one of your project's `devDependencies`:\n\n```\nnpm install --save-dev cross-env\n```\n\n> WARNING! Make sure that when you're installing packages that you spell things\n> correctly to avoid [mistakenly installing malware][malware]\n\n## Usage\n\nI use this in my npm scripts:\n\n```json\n{\n  \"scripts\": {\n    \"build\": \"cross-env NODE_ENV=production webpack --config build/webpack.config.js\"\n  }\n}\n```\n\nUltimately, the command that is executed (using [`cross-spawn`][cross-spawn])\nis:\n\n```\nwebpack --config build/webpack.config.js\n```\n\nThe `NODE_ENV` environment variable will be set by `cross-env`\n\nYou can also split a command into several ones, or separate the environment\nvariables declaration from the actual command execution. You can do it this way:\n\n```json\n{\n  \"scripts\": {\n    \"parentScript\": \"cross-env GREET=\\\"Joe\\\" npm run childScript\",\n    \"childScript\": \"echo Hello $GREET\"\n  }\n}\n```\n\nWhere `childScript` holds the actual command to execute and `parentScript` sets\nthe environment variables to use. Then instead of run the childScript you run\nthe parent. This is quite useful for launching the same command with different\nenv variables or when the environment variables are too long to have everything\nin one line.\n\nLastly, if you want to pass a JSON string (e.g., when using [ts-loader]), you can do as follows:\n\n```json\n{\n  \"scripts\": {\n    \"test\": \"cross-env TS_NODE_COMPILER_OPTIONS={\\\\\\\"module\\\\\\\":\\\\\\\"commonjs\\\\\\\"} node some_file.test.ts\"\n  }\n}\n```\n\nPay special attention to the **triple backslash** `(\\\\\\)` **before** the **double quotes** `(\")` and the **absence** of **single quotes** `(')`.\nBoth of these conditions have to be met in order to work both on Windows and UNIX.\n\n## `cross-env` vs `cross-env-shell`\n\nThe `cross-env` module exposes two bins: `cross-env` and `cross-env-shell`. The\nfirst one executes commands using [`cross-spawn`][cross-spawn], while the\nsecond one uses the `shell` option from Node's `spawn`.\n\nThe main use case for `cross-env-shell` is when your need an environment\nvariable to be set across an entire inline shell script, rather than just one\ncommand.\n\nFor example, if you want to have the environment variable apply to several\ncommands in series then you will need to wrap those in quotes and use \n`cross-env-shell` instead of `cross-env`.\n\n```json\n{\n  \"scripts\": {\n    \"greet\": \"cross-env-shell GREETING=Hi NAME=Joe \\\"echo $GREETING && echo $NAME\\\"\"\n  }\n}\n```\n\nThe rule of thumb is: if you want to pass to `cross-env` a command that\ncontains special shell characters *that you want interpreted*, then use\n`cross-env-shell`. Otherwise stick to `cross-env`.\n\n## Inspiration\n\nI originally created this to solve a problem I was having with my npm scripts in\n[angular-formly][angular-formly]. This made it made contributing to the project\nmuch easier for windows users.\n\n## Other Solutions\n\n- [`env-cmd`](https://github.com/toddbluhm/env-cmd) - Reads environment variables from a file instead\n\n## Contributors\n\nThanks goes to these people ([emoji key][emojis]):\n\n<!-- ALL-CONTRIBUTORS-LIST:START - Do not remove or modify this section -->\n| [<img src=\"https://avatars.githubusercontent.com/u/1500684?v=3\" width=\"100px;\"/><br /><sub>Kent C. Dodds</sub>](https://kentcdodds.com)<br />[💻](https://github.com/kentcdodds/cross-env/commits?author=kentcdodds) [📖](https://github.com/kentcdodds/cross-env/commits?author=kentcdodds) 🚇 [⚠️](https://github.com/kentcdodds/cross-env/commits?author=kentcdodds) | [<img src=\"https://avatars1.githubusercontent.com/u/499038?v=3\" width=\"100px;\"/><br /><sub>Ya Zhuang </sub>](https://zhuangya.me)<br />🔌 [📖](https://github.com/kentcdodds/cross-env/commits?author=zhuangya) | [<img src=\"https://avatars3.githubusercontent.com/u/3440094?v=3\" width=\"100px;\"/><br /><sub>James Harris</sub>](https://wopian.me)<br />[📖](https://github.com/kentcdodds/cross-env/commits?author=wopian) | [<img src=\"https://avatars1.githubusercontent.com/u/8941730?v=3\" width=\"100px;\"/><br /><sub>compumike08</sub>](https://github.com/compumike08)<br />[🐛](https://github.com/kentcdodds/cross-env/issues?q=author%3Acompumike08) [📖](https://github.com/kentcdodds/cross-env/commits?author=compumike08) [⚠️](https://github.com/kentcdodds/cross-env/commits?author=compumike08) | [<img src=\"https://avatars1.githubusercontent.com/u/2270425?v=3\" width=\"100px;\"/><br /><sub>Daniel Rodríguez Rivero</sub>](https://github.com/danielo515)<br />[🐛](https://github.com/kentcdodds/cross-env/issues?q=author%3Adanielo515) [💻](https://github.com/kentcdodds/cross-env/commits?author=danielo515) [📖](https://github.com/kentcdodds/cross-env/commits?author=danielo515) | [<img src=\"https://avatars2.githubusercontent.com/u/1508477?v=3\" width=\"100px;\"/><br /><sub>Jonas Keinholz</sub>](https://github.com/inyono)<br />[🐛](https://github.com/kentcdodds/cross-env/issues?q=author%3Ainyono) [💻](https://github.com/kentcdodds/cross-env/commits?author=inyono) [⚠️](https://github.com/kentcdodds/cross-env/commits?author=inyono) | [<img src=\"https://avatars3.githubusercontent.com/u/1656170?v=3\" width=\"100px;\"/><br /><sub>Hugo Wood</sub>](https://github.com/hgwood)<br />[🐛](https://github.com/kentcdodds/cross-env/issues?q=author%3Ahgwood) [💻](https://github.com/kentcdodds/cross-env/commits?author=hgwood) [⚠️](https://github.com/kentcdodds/cross-env/commits?author=hgwood) |\n| :---: | :---: | :---: | :---: | :---: | :---: | :---: |\n| [<img src=\"https://avatars0.githubusercontent.com/u/3715715?v=3\" width=\"100px;\"/><br /><sub>Thiebaud Thomas</sub>](https://github.com/thomasthiebaud)<br />[🐛](https://github.com/kentcdodds/cross-env/issues?q=author%3Athomasthiebaud) [💻](https://github.com/kentcdodds/cross-env/commits?author=thomasthiebaud) [⚠️](https://github.com/kentcdodds/cross-env/commits?author=thomasthiebaud) | [<img src=\"https://avatars1.githubusercontent.com/u/1715800?v=3\" width=\"100px;\"/><br /><sub>Daniel Rey López</sub>](https://daniel.blog)<br />[💻](https://github.com/kentcdodds/cross-env/commits?author=DanReyLop) [⚠️](https://github.com/kentcdodds/cross-env/commits?author=DanReyLop) | [<img src=\"https://avatars2.githubusercontent.com/u/6374832?v=3\" width=\"100px;\"/><br /><sub>Amila Welihinda</sub>](http://amilajack.com)<br />🚇 | [<img src=\"https://avatars1.githubusercontent.com/u/1396?v=3\" width=\"100px;\"/><br /><sub>Paul Betts</sub>](https://twitter.com/paulcbetts)<br />[🐛](https://github.com/kentcdodds/cross-env/issues?q=author%3Apaulcbetts) [💻](https://github.com/kentcdodds/cross-env/commits?author=paulcbetts) | [<img src=\"https://avatars1.githubusercontent.com/u/6371670?v=3\" width=\"100px;\"/><br /><sub>Turner Hayes</sub>](https://github.com/turnerhayes)<br />[🐛](https://github.com/kentcdodds/cross-env/issues?q=author%3Aturnerhayes) [💻](https://github.com/kentcdodds/cross-env/commits?author=turnerhayes) [⚠️](https://github.com/kentcdodds/cross-env/commits?author=turnerhayes) | [<img src=\"https://avatars2.githubusercontent.com/u/22251956?v=4\" width=\"100px;\"/><br /><sub>Suhas Karanth</sub>](https://github.com/sudo-suhas)<br />[💻](https://github.com/kentcdodds/cross-env/commits?author=sudo-suhas) [⚠️](https://github.com/kentcdodds/cross-env/commits?author=sudo-suhas) |\n<!-- ALL-CONTRIBUTORS-LIST:END -->\n\nThis project follows the [all-contributors][all-contributors] specification. Contributions of any kind welcome!\n\n> Note: this was added late into the project. If you've contributed to this\n> project in any way, please make a pull request to add yourself to the list\n> by following the instructions in the `CONTRIBUTING.md`\n\n## LICENSE\n\nMIT\n\n[npm]: https://www.npmjs.com/\n[node]: https://nodejs.org\n[build-badge]: https://img.shields.io/travis/kentcdodds/cross-env.svg?style=flat-square\n[build]: https://travis-ci.org/kentcdodds/cross-env\n[win-build-badge]: https://img.shields.io/appveyor/ci/kentcdodds/cross-env.svg?style=flat-square\n[win-build]: https://ci.appveyor.com/project/kentcdodds/cross-env\n[coverage-badge]: https://img.shields.io/codecov/c/github/kentcdodds/cross-env.svg?style=flat-square\n[coverage]: https://codecov.io/github/kentcdodds/cross-env\n[dependencyci-badge]: https://dependencyci.com/github/kentcdodds/cross-env/badge?style=flat-square\n[dependencyci]: https://dependencyci.com/github/kentcdodds/cross-env\n[version-badge]: https://img.shields.io/npm/v/cross-env.svg?style=flat-square\n[package]: https://www.npmjs.com/package/cross-env\n[node-version-badge]: https://img.shields.io/badge/node-%3E%3D%204.0-orange.svg?style=flat-square\n[downloads-badge]: https://img.shields.io/npm/dm/cross-env.svg?style=flat-square\n[npm-stat]: http://npm-stat.com/charts.html?package=cross-env&from=2016-04-01\n[license-badge]: https://img.shields.io/npm/l/cross-env.svg?style=flat-square\n[license]: https://github.com/kentcdodds/cross-env/blob/master/other/LICENSE\n[prs-badge]: https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square\n[prs]: http://makeapullrequest.com\n[donate-badge]: https://img.shields.io/badge/$-support-green.svg?style=flat-square\n[donate]: http://kcd.im/donate\n[coc-badge]: https://img.shields.io/badge/code%20of-conduct-ff69b4.svg?style=flat-square\n[coc]: https://github.com/kentcdodds/cross-env/blob/master/other/CODE_OF_CONDUCT.md\n[roadmap-badge]: https://img.shields.io/badge/%F0%9F%93%94-roadmap-CD9523.svg?style=flat-square\n[roadmap]: https://github.com/kentcdodds/cross-env/blob/master/other/ROADMAP.md\n[examples-badge]: https://img.shields.io/badge/%F0%9F%92%A1-examples-8C8E93.svg?style=flat-square\n[examples]: https://github.com/kentcdodds/cross-env/blob/master/other/EXAMPLES.md\n[github-watch-badge]: https://img.shields.io/github/watchers/kentcdodds/cross-env.svg?style=social\n[github-watch]: https://github.com/kentcdodds/cross-env/watchers\n[github-star-badge]: https://img.shields.io/github/stars/kentcdodds/cross-env.svg?style=social\n[github-star]: https://github.com/kentcdodds/cross-env/stargazers\n[twitter]: https://twitter.com/intent/tweet?text=Check%20out%20cross-env!%20https://github.com/kentcdodds/cross-env%20%F0%9F%91%8D\n[twitter-badge]: https://img.shields.io/twitter/url/https/github.com/kentcdodds/cross-env.svg?style=social\n[emojis]: https://github.com/kentcdodds/all-contributors#emoji-key\n[all-contributors]: https://github.com/kentcdodds/all-contributors\n[win-bash]: https://msdn.microsoft.com/en-us/commandline/wsl/about\n[angular-formly]: https://github.com/formly-js/angular-formly\n[cross-spawn]: https://www.npmjs.com/package/cross-spawn\n[ts-loader]: https://www.npmjs.com/package/ts-loader\n[malware]: http://blog.npmjs.org/post/163723642530/crossenv-malware-on-the-npm-registry\n","repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"users":{"285858315":true,"forresst17":true,"benoror":true,"bret":true,"den-dp":true,"cef62":true,"max_devjs":true,"mysticatea":true,"sappharx":true,"ridermansb":true,"brentonhouse":true,"a1ip":true,"garthk":true,"wangnan0610":true,"jason-chang":true,"vasz":true,"vutran":true,"benmosher":true,"lucifier129":true,"nex":true,"wmhilton":true,"zillding":true,"wukaidong":true,"yson":true,"hal9zillion":true,"j.su":true,"meshaneian":true,"xupea":true,"dkannan":true,"ackhub":true,"linjianhang":true,"wouter_vdb":true,"leonardorb":true,"yatsu":true,"larslawoko":true,"preco21":true,"wuwenbin":true,"akabeko":true,"ayoungh":true,"kenmcewan":true,"alefteris":true,"jslite":true,"jmiziolek":true,"maxime1992":true,"kitoss":true,"cooclsee":true,"dracochou":true,"colonaut":true,"peteb":true,"lulalachen":true,"fr-esco":true,"qqcome110":true,"easimonenko":true,"iandstanley":true,"lgatica":true,"mrdain":true,"fengmiaosen":true,"modao":true,"razr9":true,"jmsherry":true,"abhisekp":true,"tmurngon":true,"ceejbot":true,"randallagordon":true,"zhen":true,"tonyljl526":true,"tedyhy":true,"scottfreecode":true,"floriannagel":true,"eserozvataf":true,"soenkekluth":true,"ivan.marquez":true,"sternelee":true,"waitstone":true,"blade254353074":true,"ziflex":true,"robertpenner":true,"matmancini":true,"brunoscopelliti":true,"anhulife":true,"mbaer":true,"equimper":true,"ghettovoice":true,"olehbysaha":true,"xueboren":true,"clementoh":true,"jasonwang1888":true,"holly":true,"manikantag":true,"magicboy":true,"coolhanddev":true,"imagos":true,"frontmoment":true,"denji":true,"marcelohmdias":true,"cacivy":true,"aidenzou":true,"willpracht":true,"stephn_r":true,"ga1989":true,"bobxuyang":true,"eshinn":true,"abuelwafa":true,"good318":true,"timwzou":true,"hyteer":true,"kurre":true,"appsparkler":true,"mauricedb":true,"geekflyer":true,"lmammino":true,"illuminator":true,"lijsh":true,"iori20091101":true,"arkanciscan":true,"animabear":true,"cmp-cc":true,"weerd":true,"attl8d":true,"panlw":true,"bcoe":true,"fantasy":true,"bourne":true,"icflorescu":true,"koobitor":true,"jherax":true,"iseif":true,"princetoad":true,"mjurincic":true,"nmccready":true,"yong_a":true,"varbrad":true,"sgnh":true,"xlaoyu":true,"halo74u":true,"davidbwaters":true,"josokinas":true,"byoigres":true,"piecioshka":true,"tomchao":true,"pablopap":true,"tongjieme":true,"kwesi":true,"yingwuhahahaha":true,"leomdg":true,"decoded":true,"pwn":true,"serge-nikitin":true,"redstrike":true,"kontrax":true,"landy2014":true,"yikuo":true,"npmlincq":true,"sbruchmann":true,"lore-w":true,"alshamiri2":true,"cheapsteak":true,"season19840122":true,"cathay":true,"santhoshbabu":true,"isnardi":true,"samar":true,"joaquin.briceno":true,"alexxnica":true,"bdhmiloo":true,"rsp":true,"dmitr":true,"pixel67":true,"octo-utils":true,"larrychen":true,"adeguk":true,"zvit":true,"eli_yao":true,"manten":true,"mhaidarh":true,"ordinary":true,"saadbinsaeed":true,"vmleon":true,"shoonia":true,"kiknag":true,"ldq-first":true,"mrxf":true,"rickyrattlesnake":true,"usex":true,"thevikingcoder":true,"ajduke":true,"fanyegong":true,"stephencorwin":true,"leizongmin":true,"knoja4":true,"restuta":true,"laomu":true,"gmotos":true,"d-band":true,"hehehai":true,"hexagon6":true,"whathejoe":true,"zhuziyi":true,"bhv":true},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"license":"MIT","versions":{"1.0.0":{"name":"cross-env","version":"1.0.0","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"trash dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","postpublish":"publish-latest","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"1.0.5","cz-conventional-changelog":"1.1.2","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"0.3.2","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","trash":"2.0.0","validate-commit-msg":"1.0.0"},"config":{"ghooks":{"commit-msg":"./node_modules/.bin/validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"czConfig":{"path":"node_modules/cz-conventional-changelog/"},"dependencies":{"add-to-path":"1.1.2"},"gitHead":"afaae5518a03ac098fa773f7c613851b75d98b91","_id":"cross-env@1.0.0","_shasum":"98ad62c239831e85c0ae7db6d1457e0dfbf8f363","_from":".","_npmVersion":"2.14.6","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"98ad62c239831e85c0ae7db6d1457e0dfbf8f363","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"directories":{}},"1.0.1":{"name":"cross-env","version":"1.0.1","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"trash dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","postpublish":"publish-latest","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"1.0.5","cz-conventional-changelog":"1.1.2","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"0.3.2","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","publish-latest":"1.1.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","trash":"2.0.0","validate-commit-msg":"1.0.0"},"config":{"ghooks":{"commit-msg":"./node_modules/.bin/validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"czConfig":{"path":"node_modules/cz-conventional-changelog/"},"dependencies":{"add-to-path":"1.1.2"},"gitHead":"b03e7e3dedeaf1f758d2609ea1dc63f2083df74c","_id":"cross-env@1.0.1","_shasum":"355511ff3c0b947b0b4a984ff27475223ab90f78","_from":".","_npmVersion":"2.14.6","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"355511ff3c0b947b0b4a984ff27475223ab90f78","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.1.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"directories":{}},"1.0.2":{"name":"cross-env","version":"1.0.2","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"trash dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","postpublish":"publish-latest","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"1.0.5","cross-spawn":"2.0.0","cz-conventional-changelog":"1.1.2","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"0.3.2","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","publish-latest":"1.1.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","trash":"2.0.0","validate-commit-msg":"1.0.0"},"config":{"ghooks":{"commit-msg":"./node_modules/.bin/validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"czConfig":{"path":"node_modules/cz-conventional-changelog/"},"dependencies":{"add-to-path":"1.1.2"},"gitHead":"3c21e496d7d3455a56eae49ca430f45e70577a0b","_id":"cross-env@1.0.2","_shasum":"ccb6b56b08d5c1ba7c16657930ea0f491760a548","_from":".","_npmVersion":"2.14.10","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"ccb6b56b08d5c1ba7c16657930ea0f491760a548","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.2.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"directories":{}},"1.0.3":{"name":"cross-env","version":"1.0.3","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"trash dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js _mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","postpublish":"publish-latest","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","publish-latest":"1.1.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","trash":"2.0.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"2.0.0","manage-path":"2.0.0"},"gitHead":"452ea5acebd474ed28039fdc346395ae15612edd","_id":"cross-env@1.0.3","_shasum":"db4c98bee6d33578fce51f05f0b676f3ae65857a","_from":".","_npmVersion":"2.14.10","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"db4c98bee6d33578fce51f05f0b676f3ae65857a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.3.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"directories":{}},"1.0.4":{"name":"cross-env","version":"1.0.4","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"trash dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","postpublish":"publish-latest","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","publish-latest":"1.1.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","trash":"2.0.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn-async":"2.0.0","manage-path":"2.0.0"},"gitHead":"847e80f1ac592ecf1444a70e661fe7427156d2d4","_id":"cross-env@1.0.4","_shasum":"aae43f5127362f3aec5347976dfbffb01aefac07","_from":".","_npmVersion":"2.14.10","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"aae43f5127362f3aec5347976dfbffb01aefac07","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.4.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"directories":{}},"1.0.5":{"name":"cross-env","version":"1.0.5","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"trash dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","postpublish":"publish-latest","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","manage-path":"2.0.0","mocha":"2.3.3","proxyquire":"1.7.2","publish-latest":"1.1.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","trash":"2.0.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn-async":"2.0.0","lodash.assign":"^3.2.0"},"gitHead":"187c068f9bb12e010eb22f30ba0b8778e9edd6ca","_id":"cross-env@1.0.5","_shasum":"e6e958440f9c24d70ed556047ebb6e8378856a9a","_from":".","_npmVersion":"2.14.13","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"e6e958440f9c24d70ed556047ebb6e8378856a9a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.5.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"directories":{}},"1.0.6":{"name":"cross-env","version":"1.0.6","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"trash dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","postpublish":"publish-latest","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","manage-path":"2.0.0","mocha":"2.3.3","proxyquire":"1.7.2","publish-latest":"1.1.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","trash":"2.0.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn-async":"2.0.0","lodash.assign":"^3.2.0"},"gitHead":"616c5cbce08f0f53ca5c6e1f0709ee6d0a5d2ea3","_id":"cross-env@1.0.6","_shasum":"e5b42b5fe1eff363f40ee6ec51f241b769b098d6","_from":".","_npmVersion":"2.14.15","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"e5b42b5fe1eff363f40ee6ec51f241b769b098d6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.6.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"directories":{}},"1.0.7":{"name":"cross-env","version":"1.0.7","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"trash dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","manage-path":"2.0.0","mocha":"2.3.3","proxyquire":"1.7.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","trash":"2.0.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn-async":"2.0.0","lodash.assign":"^3.2.0"},"gitHead":"20d35cd6c16961c7205273b7214c3c6de0ed5497","_id":"cross-env@1.0.7","_shasum":"dd6cea13b31df4ffab4591343e605e370182647e","_from":".","_npmVersion":"2.14.15","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"dd6cea13b31df4ffab4591343e605e370182647e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.7.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"directories":{}},"1.0.8":{"name":"cross-env","version":"1.0.8","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","manage-path":"2.0.0","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1","lodash.assign":"^3.2.0"},"gitHead":"22bf76db754be5f68ddb4f7e25838c2f2a814ea7","_id":"cross-env@1.0.8","_shasum":"2bde748efc780f56ddf07ea69fcad875357774ce","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"2bde748efc780f56ddf07ea69fcad875357774ce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-1.0.8.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-1.0.8.tgz_1464062628365_0.9189400379545987"},"directories":{}},"2.0.0":{"name":"cross-env","version":"2.0.0","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1","lodash.assign":"^3.2.0"},"gitHead":"8ff5555b0f566cbab4e56ddb5de2416be2959a22","_id":"cross-env@2.0.0","_shasum":"ca700331bc325374854ba71dc8ad1694f02526ed","_from":".","_npmVersion":"2.15.9","_nodeVersion":"3.3.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"ca700331bc325374854ba71dc8ad1694f02526ed","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-2.0.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cross-env-2.0.0.tgz_1468415608165_0.2175458308774978"},"directories":{}},"2.0.1":{"name":"cross-env","version":"2.0.1","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1","lodash.assign":"^3.2.0"},"gitHead":"9976b5ecdca29ff59573f3b98a829e3663197816","_id":"cross-env@2.0.1","_shasum":"f283b4039ea759ada9ab7e987ad3bddb241b79a6","_from":".","_npmVersion":"2.15.10","_nodeVersion":"6.5.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"f283b4039ea759ada9ab7e987ad3bddb241b79a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-2.0.1.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-2.0.1.tgz_1472486000996_0.6766182011924684"},"directories":{}},"3.0.0":{"name":"cross-env","version":"3.0.0","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/index.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1"},"gitHead":"f2275d53ff09b9a73f88fed3f79793f4e3e1f637","_id":"cross-env@3.0.0","_shasum":"22502a6bb9c80545ed14b745c3de484b595e3846","_from":".","_npmVersion":"2.15.11","_nodeVersion":"6.6.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"22502a6bb9c80545ed14b745c3de484b595e3846","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.0.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-3.0.0.tgz_1474732667973_0.8063043183647096"},"directories":{}},"3.1.0":{"name":"cross-env","version":"3.1.0","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"cd src && babel index.js -d ../dist && cd ..","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/*.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1"},"gitHead":"8da54d0d5a15fb36863d9105a610b64932c4e667","_id":"cross-env@3.1.0","_shasum":"cf7ea303c0e00083630e0324b98c26602f140712","_from":".","_npmVersion":"2.15.11","_nodeVersion":"6.7.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"cf7ea303c0e00083630e0324b98c26602f140712","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.1.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cross-env-3.1.0.tgz_1475601157116_0.9495274033397436"},"deprecated":"bad build, please use >= 3.1.1","directories":{}},"3.1.1":{"name":"cross-env","version":"3.1.1","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"babel --copy-files --out-dir dist --ignore *.test.js src","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/*.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1"},"gitHead":"e847b1859fabccc89e97622966d6d72cb386fbfd","_id":"cross-env@3.1.1","_shasum":"dd1b9964ae1737f35a3b0f5c0809f94b02c93b65","_from":".","_npmVersion":"2.15.11","_nodeVersion":"6.7.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"dd1b9964ae1737f35a3b0f5c0809f94b02c93b65","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.1.1.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-3.1.1.tgz_1475604097314_0.22411695774644613"},"directories":{}},"3.1.2":{"name":"cross-env","version":"3.1.2","description":"Run commands that set environment variables across platforms","main":"src/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"babel --copy-files --out-dir dist --ignore *.test.js src","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/*.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1"},"gitHead":"5d932c930df1b7ec90f98a3e2e91562a765ee224","_id":"cross-env@3.1.2","_shasum":"a81b470273134f29e7edb4068214b9f044d39d8d","_from":".","_npmVersion":"2.15.11","_nodeVersion":"6.7.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"a81b470273134f29e7edb4068214b9f044d39d8d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.1.2.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cross-env-3.1.2.tgz_1475936388023_0.9474780019372702"},"directories":{}},"3.1.3":{"name":"cross-env","version":"3.1.3","description":"Run commands that set environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"bin/cross-env.js"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"babel --copy-files --out-dir dist --ignore *.test.js src","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/*.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1"},"gitHead":"01df20862ec0dce118baf97ea6de2625ad64066c","_id":"cross-env@3.1.3","_shasum":"58cd8231808f50089708b091f7dd37275a8e8154","_from":".","_npmVersion":"2.15.11","_nodeVersion":"6.8.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"58cd8231808f50089708b091f7dd37275a8e8154","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.1.3.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/cross-env-3.1.3.tgz_1476516573602_0.8373507612850517"},"directories":{}},"3.1.4":{"name":"cross-env","version":"3.1.4","description":"Run commands that set environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"bin/cross-env.js"},"engines":{"node":">=4.0"},"scripts":{"start":"npm run test:watch","prebuild":"rimraf dist && mkdir dist","build":"babel --copy-files --out-dir dist --ignore *.test.js src","commit":"git-cz","eslint":"eslint src/ -c other/src.eslintrc --ignore-path other/src.eslintignore && eslint src/*.test.js","check-coverage":"istanbul check-coverage --statements 100 --branches 100 --functions 100 --lines 100","report-coverage":"cat ./coverage/lcov.info | codecov","test:watch":"mocha src/*.test.js -w --compilers js:babel/register","test":"istanbul cover -x *.test.js node_modules/mocha/bin/_mocha -- -R spec src/*.test.js --compilers js:babel/register","prepublish":"npm run build","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"keywords":["environment variables","cross platform"],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","devDependencies":{"babel":"5.8.23","chai":"3.3.0","codecov.io":"0.1.6","commitizen":"2.4.4","cz-conventional-changelog":"1.1.4","eslint":"1.5.1","eslint-config-kentcdodds":"4.0.1","eslint-plugin-mocha":"1.0.0","ghooks":"1.0.0","istanbul":"0.3.21","mocha":"2.3.3","proxyquire":"1.7.2","rimraf":"^2.5.2","semantic-release":"4.3.5","sinon":"1.17.1","sinon-chai":"2.8.0","validate-commit-msg":"1.0.0"},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog/"},"ghooks":{"commit-msg":"validate-commit-msg && npm run eslint && npm t && npm run check-coverage && echo 'pre-commit checks good 👍'"}},"dependencies":{"cross-spawn":"^3.0.1"},"gitHead":"b4a00630504bb21a5ad7bcf7fdb2ef1b4208a176","_id":"cross-env@3.1.4","_shasum":"56e8bca96f17908a6eb1bc2012ca126f92842130","_from":".","_npmVersion":"2.15.11","_nodeVersion":"6.9.2","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"56e8bca96f17908a6eb1bc2012ca126f92842130","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.1.4.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-3.1.4.tgz_1483416901934_0.5976849617436528"},"directories":{}},"3.2.0":{"name":"cross-env","version":"3.2.0","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"bin/cross-env.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"dad00c469ad27d58946581c289ab6c7610a71bfd","_id":"cross-env@3.2.0","_shasum":"2ecc698cc21848218a7c6f3e9fa958c0f97307c3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"2ecc698cc21848218a7c6f3e9fa958c0f97307c3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.2.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-3.2.0.tgz_1488641093570_0.9611874436959624"},"directories":{}},"3.2.1":{"name":"cross-env","version":"3.2.1","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"aae44dff49494912a76423a7e45d3d1afd630e4a","_id":"cross-env@3.2.1","_shasum":"904f160f607cb3db693648222f5b2ab9f1e7962d","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"904f160f607cb3db693648222f5b2ab9f1e7962d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.2.1.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-3.2.1.tgz_1488643138025_0.9918442654889077"},"directories":{}},"3.2.2":{"name":"cross-env","version":"3.2.2","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"b303b9f5be510c7ebd371fb86aae8d9488a0ce82","_id":"cross-env@3.2.2","_shasum":"1f0bfec907f4eca8541bd7165c0e2f2f9fc4372f","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"1f0bfec907f4eca8541bd7165c0e2f2f9fc4372f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.2.2.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-3.2.2.tgz_1488644033249_0.08879243396222591"},"directories":{}},"3.2.3":{"name":"cross-env","version":"3.2.3","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"967f47286412d729c34db6e5eab8f0afc7c3a160","_id":"cross-env@3.2.3","_shasum":"a43a0799b8ec422d0279b829ce8d7cf2da6b17ac","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"a43a0799b8ec422d0279b829ce8d7cf2da6b17ac","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.2.3.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-3.2.3.tgz_1488645865092_0.699036092730239"},"directories":{}},"3.2.4":{"name":"cross-env","version":"3.2.4","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"c1a9ed0764fe1e88f2ba370b43c4ade21d536f60","_id":"cross-env@3.2.4","_shasum":"9e0585f277864ed421ce756f81a980ff0d698aba","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"9e0585f277864ed421ce756f81a980ff0d698aba","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-3.2.4.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/cross-env-3.2.4.tgz_1489508640872_0.23967337561771274"},"directories":{}},"4.0.0-beta.0":{"name":"cross-env","version":"4.0.0-beta.0","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"63352c2f954d255ba834d2395850602836669b4e","_id":"cross-env@4.0.0-beta.0","_shasum":"08ad6a24be72966a27587bf41b2d143c6b842b17","_from":".","_npmVersion":"4.3.0","_nodeVersion":"6.9.5","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"08ad6a24be72966a27587bf41b2d143c6b842b17","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-4.0.0-beta.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-4.0.0-beta.0.tgz_1490579462559_0.4901835566852242"},"directories":{}},"4.0.0":{"name":"cross-env","version":"4.0.0","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"e8a1614683fad01b2927ac8a4be308a21aa7df98","_id":"cross-env@4.0.0","_shasum":"16083862d08275a4628b0b243b121bedaa55dd80","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.1","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"16083862d08275a4628b0b243b121bedaa55dd80","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-4.0.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-4.0.0.tgz_1490926067268_0.595629817340523"},"directories":{}},"5.0.0-beta.0":{"name":"cross-env","version":"5.0.0-beta.0","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js","cross-env-shell":"dist/bin/cross-env-shell.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"a52151c90c921f81e85faff0ba9f23a33f26d3ab","_id":"cross-env@5.0.0-beta.0","_shasum":"9ab98526d6b9a466e6016afd6cc59a9ff6eed9e6","_from":".","_npmVersion":"4.3.0","_nodeVersion":"6.9.5","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"9ab98526d6b9a466e6016afd6cc59a9ff6eed9e6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-5.0.0-beta.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-5.0.0-beta.0.tgz_1492554222331_0.3243228388018906"},"directories":{}},"5.0.0":{"name":"cross-env","version":"5.0.0","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js","cross-env-shell":"dist/bin/cross-env-shell.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"9c4f3462a302e222ad40a3b65086164927da01c3","_id":"cross-env@5.0.0","_shasum":"565ccae4d09676441a5087f406fe7661a29c931b","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.3","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"565ccae4d09676441a5087f406fe7661a29c931b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-5.0.0.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/cross-env-5.0.0.tgz_1494522715536_0.7865796182304621"},"directories":{}},"5.0.1":{"name":"cross-env","version":"5.0.1","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js","cross-env-shell":"dist/bin/cross-env-shell.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.23.0","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"b10de512868e6b591f9d735fbe83c7fe2821e7b8","_id":"cross-env@5.0.1","_shasum":"ff4e72ea43b47da2486b43a7f2043b2609e44913","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.0","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"ff4e72ea43b47da2486b43a7f2043b2609e44913","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-5.0.1.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cross-env-5.0.1.tgz_1496888744813_0.596174944890663"},"directories":{}},"5.0.2":{"name":"cross-env","version":"5.0.2","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js","cross-env-shell":"dist/bin/cross-env-shell.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.24.1","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"487241db78eb6343726fe09643b2402a4e920e4e","_id":"cross-env@5.0.2","_shasum":"d39fd2fa28c1b5cfb91e7058d1efe8b4fcb01334","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"d39fd2fa28c1b5cfb91e7058d1efe8b4fcb01334","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-5.0.2.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cross-env-5.0.2.tgz_1501602939211_0.32774517545476556"},"directories":{}},"5.0.3":{"name":"cross-env","version":"5.0.3","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js","cross-env-shell":"dist/bin/cross-env-shell.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.24.1","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"277cf075d65ce2470316b46f2ae962a8bb174ec9","_id":"cross-env@5.0.3","_shasum":"8f55acef7469fed364f4039a9f7ece90191e3981","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"8f55acef7469fed364f4039a9f7ece90191e3981","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-5.0.3.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cross-env-5.0.3.tgz_1501768989069_0.7702085783239454"},"directories":{}},"5.0.4":{"name":"cross-env","version":"5.0.4","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js","cross-env-shell":"dist/bin/cross-env-shell.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.24.1","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"c03ec7a2b6c53e17c6e51e742570122d4af68505","_id":"cross-env@5.0.4","_shasum":"af93f5ce541ca9de49250b988104112e31c22563","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"af93f5ce541ca9de49250b988104112e31c22563","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-5.0.4.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cross-env-5.0.4.tgz_1502013224440_0.6318027095403522"},"directories":{}},"5.0.5":{"name":"cross-env","version":"5.0.5","description":"Run scripts that set and use environment variables across platforms","main":"dist/index.js","bin":{"cross-env":"dist/bin/cross-env.js","cross-env-shell":"dist/bin/cross-env-shell.js"},"engines":{"node":">=4.0"},"scripts":{"start":"nps","test":"nps test","commitmsg":"opt --in commit-msg --exec \"validate-commit-msg\"","precommit":"lint-staged && opt --in pre-commit --exec \"npm start validate\""},"files":["dist"],"keywords":[],"author":{"name":"Kent C. Dodds","email":"kent@doddsfamily.us","url":"http://kentcdodds.com/"},"license":"MIT","dependencies":{"cross-spawn":"^5.1.0","is-windows":"^1.0.0"},"devDependencies":{"all-contributors-cli":"^4.0.1","babel-cli":"^6.24.1","babel-core":"^6.23.1","babel-jest":"^19.0.0","babel-preset-env":"^1.2.0","babel-preset-stage-2":"^6.22.0","babel-register":"^6.23.0","codecov":"^1.0.1","commitizen":"^2.9.6","cz-conventional-changelog":"^2.0.0","eslint":"^3.17.0","eslint-config-kentcdodds":"^12.0.0","husky":"^0.13.2","jest-cli":"^19.0.2","lint-staged":"^3.3.1","nps":"^5.0.3","nps-utils":"^1.1.2","opt-cli":"^1.5.1","prettier-eslint-cli":"^3.1.2","semantic-release":"^6.3.6","validate-commit-msg":"^2.11.1"},"eslintConfig":{"extends":["kentcdodds","kentcdodds/jest"],"rules":{"max-len":["error",80]}},"lint-staged":{"*.js":["prettier-eslint --write","git add"]},"jest":{"testEnvironment":"node","coverageThreshold":{"global":{"branches":100,"functions":100,"lines":100,"statements":100}}},"config":{"commitizen":{"path":"node_modules/cz-conventional-changelog"}},"repository":{"type":"git","url":"git+https://github.com/kentcdodds/cross-env.git"},"bugs":{"url":"https://github.com/kentcdodds/cross-env/issues"},"homepage":"https://github.com/kentcdodds/cross-env#readme","gitHead":"44b37dd1ae28f81b10c4411d693c43a4c431f4e4","_id":"cross-env@5.0.5","_shasum":"4383d364d9660873dd185b398af3bfef5efffef3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.11.2","_npmUser":{"name":"kentcdodds","email":"kent@doddsfamily.us"},"dist":{"shasum":"4383d364d9660873dd185b398af3bfef5efffef3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/cross-env/-/cross-env-5.0.5.tgz"},"maintainers":[{"name":"kentcdodds","email":"kent@doddsfamily.us"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/cross-env-5.0.5.tgz_1502221591573_0.38387310691177845"},"directories":{}}},"name":"cross-env","time":{"modified":"2017-08-10T10:03:33.482Z","created":"2015-10-01T23:19:27.453Z","1.0.0":"2015-10-01T23:19:27.453Z","1.0.1":"2015-10-01T23:21:22.614Z","1.0.2":"2015-11-11T17:59:13.769Z","1.0.3":"2015-11-11T18:06:27.921Z","1.0.4":"2015-11-12T04:43:44.960Z","1.0.5":"2015-11-28T00:08:43.483Z","1.0.6":"2015-12-25T14:24:39.795Z","1.0.7":"2016-01-03T15:08:15.687Z","1.0.8":"2016-05-24T04:03:50.508Z","2.0.0":"2016-07-13T13:13:29.016Z","2.0.1":"2016-08-29T15:53:22.671Z","3.0.0":"2016-09-24T15:57:49.893Z","3.1.0":"2016-10-04T17:12:38.918Z","3.1.1":"2016-10-04T18:01:38.972Z","3.1.2":"2016-10-08T14:19:48.594Z","3.1.3":"2016-10-15T07:29:35.216Z","3.1.4":"2017-01-03T04:15:04.127Z","3.2.0":"2017-03-04T15:24:55.509Z","3.2.1":"2017-03-04T15:59:00.089Z","3.2.2":"2017-03-04T16:13:55.420Z","3.2.3":"2017-03-04T16:44:27.226Z","3.2.4":"2017-03-14T16:24:01.735Z","4.0.0-beta.0":"2017-03-27T01:51:04.557Z","4.0.0":"2017-03-31T02:07:49.386Z","5.0.0-beta.0":"2017-04-18T22:23:44.244Z","5.0.0":"2017-05-11T17:11:57.532Z","5.0.1":"2017-06-08T02:25:45.854Z","5.0.2":"2017-08-01T15:55:40.312Z","5.0.3":"2017-08-03T14:03:10.102Z","5.0.4":"2017-08-06T09:53:45.362Z","5.0.5":"2017-08-08T19:46:32.639Z"},"readmeFilename":"README.md","homepage":"https://github.com/kentcdodds/cross-env#readme"}