{"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"dist-tags":{"latest":"3.4.0","next":"4.0.0-beta-2"},"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"description":"Lint files staged by git","readme":"# lint-staged [![Build Status](https://travis-ci.org/okonet/lint-staged.svg?branch=master)](https://travis-ci.org/okonet/lint-staged) [![npm version](https://badge.fury.io/js/lint-staged.svg)](https://badge.fury.io/js/lint-staged)\n\nRun linters against staged git files and don't let :poop: slip into your code base!\n\n## Why\n\n[Read the Medium post](https://medium.com/@okonetchnikov/make-linting-great-again-f3890e1ad6b8#.8qepn2b5l)\n\nLinting makes more sense when running before committing your code. By doing that you can ensure no errors are going into repository and enforce code style. But running a lint process on a whole project is slow and linting results can be irrelevant. Ultimately you only want to lint files that will be committed.\n\nThis project contains a script that will run arbitrary npm and shell tasks with a list of staged files as an argument, filtered by a specified glob pattern.\n\n## Related blogs posts\n\n* [Running Jest Tests Before Each Git Commit](https://benmccormick.org/2017/02/26/running-jest-tests-before-each-git-commit/)\n\n> If you've written one, please submit a PR with the link to it!\n\n## Installation & Setup\n\n1. `npm install --save-dev lint-staged`\n1. Install and setup your linters just like you would do normally. Add appropriate `.eslintrc` and `.stylelintrc`, etc., configs (see [ESLint](http://eslint.org) and [Stylelint](http://stylelint.io/) docs if you need help here).\n1. Add `{ \"lint-staged\": \"lint-staged\" }` to `scripts` section of `package.json`.\n1. Add `\"lint-staged\": { \"*.js\": \"eslint\" }` to `package.json` (see [configuration](#configuration)).\n1. `npm install --save-dev pre-commit` ¹.\n1. Add `\"pre-commit\": \"lint-staged\"` to `package.json` (top level, not the `scripts` section).\n\n¹ I recommend using [pre-commit](https://github.com/observing/pre-commit) or [husky](https://github.com/typicode/husky) to manage git hooks but you can use whatever you want.\n\nNow change a few files, `git add` some of them to your commit and try to `git commit` them.\n\nSee [examples](#examples) below.\n\n## Configuration\n\nStarting with v3.1 you can now use different ways of configuring it:\n\n* `lint-staged` object in your `package.json`\n* `.lintstagedrc` file in JSON or YML format\n* `lint-staged.config.js` file in JS format\n\nSee [cosmiconfig](https://github.com/davidtheclark/cosmiconfig) for more details on what formats are supported.\n\nLint-staged supports simple and advanced config formats.\n\n### Simple config format\n\nShould be an object where each value is a command to run and its key is a glob pattern to use for this command. This package uses [minimatch](https://github.com/isaacs/minimatch) for glob patterns.\n\n#### `package.json` example:\n```json\n{\n  \"scripts\": {\n    \"my-task\": \"your-command\",\n  },\n  \"lint-staged\": {\n    \"*\": \"my-task\"\n  }\n}\n```\n\n#### `.lintstagedrc` example\n\n```json\n{\n\t\"*\": \"my-task\"\n}\n```\n\nThis config will execute `npm run my-task` with the list of currently staged files passed as arguments.\n\nSo, considering you did `git add file1.ext file2.ext`, lint-staged will run the following command:\n\n`npm run my-task -- file1.ext file2.ext`\n\n### Advanced config format\nTo set options and keep lint-staged extensible, advanced format can be used. This should hold linters object in `linters` property.\n\n## Options\n\n* `linters` — `Object` — keys (`String`) are glob patterns, values (`Array<String> | String`) are commands to execute.\n* `gitDir` — Sets the relative path to the `.git` root. Useful when your `package.json` is located in a sub-directory. See [working from a sub-directory](#working-from-a-sub-directory)\n* `concurrent` — *true* — runs linters for each glob pattern simultaneously. If you don’t want this, you can set `concurrent: false`\n* `verbose` — *false* — runs lint-staged in verbose mode. When `true` it will use https://github.com/SamVerschueren/listr-verbose-renderer.\n\n## Filtering files\n\nIt is possible to run linters for certain paths only by using [minimatch](https://github.com/isaacs/minimatch) patterns. The paths used for filtering via minimatch are relative to the directory that contains the `.git` directory. The paths passed to the linters are absolute to avoid confusion in case they're executed with a different working directory, as would be the case when using the `gitDir` option.\n\n```js\n{\n\t// .js files anywhere in the project\n\t\"*.js\": \"eslint\",\n\t// .js files anywhere in the project\n\t\"**/*.js\": \"eslint\",\n\t// .js file in the src directory\n\t\"src/*.js\": \"eslint\",\n\t// .js file anywhere within and below the src directory\n\t\"src/**/*.js\": \"eslint\",\n}\n```\n\n## What commands are supported?\n\nSupported are both local npm scripts (`npm run-script`), or any executables installed locally or globally via `npm` as well as any executable from your $PATH.\n\n> Using globally installed scripts is discouraged, since lint-staged may not work for someone who doesn’t have it installed.\n\n`lint-staged` is using [npm-which](https://github.com/timoxley/npm-which) to locate locally installed scripts, so you don't need to add `{ \"eslint\": \"eslint\" }` to the `scripts` section of your `package.json`. So  in your `.lintstagedrc` you can write:\n\n```json\n{\n\t\"*.js\": \"eslint --fix\"\n}\n```\n\nPass arguments to your commands separated by space as you would do in the shell. See [examples](#examples) below.\n\nStarting from [v2.0.0](https://github.com/okonet/lint-staged/releases/tag/2.0.0) sequences of commands are supported. Pass an array of commands instead of a single one and they will run sequentially. This is useful for running auto-formatting tools like `eslint --fix` or `stylefmt` but can be used for any arbitrary sequences.\n\n## Re-formatting the code\n\nTools like ESLint or stylefmt can re-format your code according to an appropriate config  by running `eslint --fix`. After the code is re-formatted, we want it to be added to the same commit. This can be done using following config:\n\n```json\n{\n\t\"*.js\": [\"eslint --fix\", \"git add\"]\n}\n```\n\n~~Starting from v3.1, lint-staged will stash you remaining changes (not added to the index) and restore them from stash afterwards. This allows you to create partial commits with hunks using `git add --patch`.~~ This is still [not resolved](https://github.com/okonet/lint-staged/issues/62)\n\n## Working from a sub-directory\n\nIf your `package.json` is located in a sub-directory of the git root directory, you can use `gitDir` relative path to point there in order to make lint-staged work.\n\n```json\n{\n    \"gitDir\": \"../\",\n    \"linters\":{\n        \"*\": \"my-task\"\n    }\n}\n```\n\n## Examples\n\nAll examples assuming you’ve already set up lint-staged and pre-commit in the  `package.json`\n\n```json\n{\n  \"name\": \"My project\",\n  \"version\": \"0.1.0\",\n  \"scripts\": {\n    \"lint-staged\": \"lint-staged\"\n  },\n  \"pre-commit\": \"lint-staged\"\n}\n```\n\n*Note we don’t pass a path as an argument for the runners. This is important since lint-staged will do this for you. Please don’t reuse your tasks with paths from package.json.*\n\n### ESLint with default parameters for `*.js` and `*.jsx` running as a pre-commit hook\n\n```json\n{\n\t\"*.{js,jsx}\": \"eslint\"\n}\n```\n\n### Automatically fix code style with `--fix` and add to commit\n\n```json\n{\n\t\"*.js\": [\"eslint --fix\", \"git add\"]\n}\n```\n\nThis will run `eslint --fix` and automatically add changes to the commit. Please note, that it doesn’t work well with committing hunks (`git add -p`).\n\n### Stylelint for CSS with defaults and for SCSS with SCSS syntax\n\n```json\n{\n\t\"*.css\": \"stylelint\",\n\t\"*.scss\": \"stylelint --syntax=scss\"\n}\n```\n\n### Automatically fix SCSS style with `stylefmt` and add to commit\n\n```json\n{\n\t\"*.scss\": [\"stylefmt\", \"stylelint --syntax scss\", \"git add\"]\n}\n```\n\n### Run PostCSS sorting, add files to commit and run Stylelint to check\n\n```json\n{\n\t\"*.scss\": [\n\t  \"postcss --config path/to/your/config --replace\",\n\t  \"stylelint\",\n\t  \"git add\"\n\t]\n}\n```\n","repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"users":{"tomekf":true,"juandaco":true,"nikolay":true},"bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"license":"MIT","versions":{"0.1.0":{"name":"lint-staged","version":"0.1.0","description":"Lint JS and CSS files staged by git","bin":{"eslint-staged":"./eslint.sh","stylelint-staged":"./stylelint.sh"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"eslint":"^1.10.3","staged-files":"^0.1.2","stylelint":"^3.2.2"},"gitHead":"a21bd3e0703463c679b6ff417c431fdfbd99df8f","_id":"lint-staged@0.1.0","_shasum":"110487f84d905178fe2c2930124c083a15e7ef6b","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"110487f84d905178fe2c2930124c083a15e7ef6b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"lint-staged","version":"0.1.1","description":"Lint JS and CSS files staged by git","bin":{"eslint-staged":"./eslint.sh","stylelint-staged":"./stylelint.sh"},"scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"eslint":"^1.10.3","staged-files":"^0.1.2","stylelint":"^3.2.2"},"gitHead":"23a28b09ef8c0450b385cdc2412dea70cf356dd7","_id":"lint-staged@0.1.1","_shasum":"213a2b99fd63b7c89a18f435f53861cfdac18457","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"213a2b99fd63b7c89a18f435f53861cfdac18457","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-0.1.1.tgz"},"directories":{}},"0.2.0":{"name":"lint-staged","version":"0.2.0","description":"Lint JS and CSS files staged by git","bin":{"eslint-staged":"./scripts/eslint-staged.sh","jscs-staged":"./scripts/jscs-staged.sh","flow-staged":"./scripts/eslint-staged.sh","stylelint-staged":"./scripts/stylelint-staged.sh"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to install linters!\" && exit 0"},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"staged-files":"^0.1.2"},"gitHead":"d964f8fe3be94fac50292071898f93d03c016ee7","_id":"lint-staged@0.2.0","_shasum":"23d0df4d877c554da9135dfabbc351ac344731f9","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"23d0df4d877c554da9135dfabbc351ac344731f9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-0.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-0.2.0.tgz_1459964641201_0.750901446910575"},"directories":{}},"0.2.1":{"name":"lint-staged","version":"0.2.1","description":"Lint JS and CSS files staged by git","bin":{"eslint-staged":"./scripts/eslint-staged.sh","jscs-staged":"./scripts/jscs-staged.sh","flow-staged":"./scripts/flow-staged.sh","stylelint-staged":"./scripts/stylelint-staged.sh"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to install linters!\" && exit 0"},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"staged-files":"^0.1.2"},"gitHead":"46a7594dbb3e52c06e43345e978ef384059dc329","_id":"lint-staged@0.2.1","_shasum":"2246e99b63676df795b36d1595929a3b3dd9646d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"2246e99b63676df795b36d1595929a3b3dd9646d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-0.2.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-0.2.1.tgz_1459983616885_0.1653247708454728"},"directories":{}},"0.2.2":{"name":"lint-staged","version":"0.2.2","description":"Lint JS and CSS files staged by git","bin":{"eslint-staged":"./scripts/eslint-staged.sh","jscs-staged":"./scripts/jscs-staged.sh","flow-staged":"./scripts/flow-staged.sh","stylelint-staged":"./scripts/stylelint-staged.sh"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to install linters!\" && exit 0","release":"npmpub"},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"staged-files":"^0.1.2"},"devDependencies":{"npmpub":"^3.1.0"},"gitHead":"950ad3a1d0257eb5e6ffe0fdd464897aa87c9f2b","_id":"lint-staged@0.2.2","_shasum":"3c712a61fe32b063a1469a0ceecd83117aed2366","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"3c712a61fe32b063a1469a0ceecd83117aed2366","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-0.2.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-0.2.2.tgz_1462180173677_0.537831996800378"},"directories":{}},"1.0.0":{"name":"lint-staged","version":"1.0.0","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to install linters!\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub"},"lint-staged":{"eslint":"*.js"},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"minimatch":"^3.0.0","npm-run":"^3.0.0","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4","strip-eof":"^1.0.0","which":"^1.2.9"},"devDependencies":{"eslint":"^2.9.0","eslint-config-es5":"^0.5.0","npmpub":"^3.1.0","pre-commit":"^1.1.3"},"gitHead":"dc34fde7089784dc0428d6dcc113d91175ddf341","_id":"lint-staged@1.0.0","_shasum":"7d14c9e2f376a5f24f9a9f9142e31cb422e3cf3c","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"7d14c9e2f376a5f24f9a9f9142e31cb422e3cf3c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-1.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-1.0.0.tgz_1465295592301_0.27714417269453406"},"directories":{}},"1.0.1":{"name":"lint-staged","version":"1.0.1","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to install linters!\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint-hook":"eslint --quiet","pre-commit":"node index.js","release":"npmpub"},"lint-staged":{"eslint-hook":"*.js"},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"minimatch":"^3.0.0","npm-which":"^2.0.0","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4","strip-eof":"^1.0.0","which":"^1.2.9"},"devDependencies":{"eslint":"^2.9.0","eslint-config-es5":"^0.5.0","npmpub":"^3.1.0","pre-commit":"^1.1.3"},"gitHead":"bf1b6547636d0524ba9c85a2059774c78d6afc7e","_id":"lint-staged@1.0.1","_shasum":"d2b2b061aedc2b44005831a24637d5d7c9c7ac1d","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"d2b2b061aedc2b44005831a24637d5d7c9c7ac1d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-1.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-1.0.1.tgz_1465303367209_0.0985806081444025"},"directories":{}},"1.0.2":{"name":"lint-staged","version":"1.0.2","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to install linters!\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint-hook":"eslint --quiet","pre-commit":"node index.js","release":"npmpub"},"lint-staged":{"eslint-hook":"*.js"},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^1.2.1","minimatch":"^3.0.0","npm-which":"^2.0.0","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4"},"devDependencies":{"eslint":"^2.9.0","eslint-config-es5":"^0.5.0","npmpub":"^3.1.0","pre-commit":"^1.1.3"},"gitHead":"c3896592fe59fcf1e49d63499a688eeba17ec97e","_id":"lint-staged@1.0.2","_shasum":"1aa3511d35a7026b3478143ff2e83b8245f96077","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"1aa3511d35a7026b3478143ff2e83b8245f96077","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-1.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-1.0.2.tgz_1467280509663_0.7507780496962368"},"directories":{}},"2.0.0-beta.1":{"name":"lint-staged","version":"2.0.0-beta.1","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint":"eslint --quiet --fix","git:add":"git add","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js"},"lint-staged":{"*.js":["eslint","git:add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^1.2.1","batchflow":"^0.4.0","minimatch":"^3.0.0","npm-which":"^2.0.0","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^2.9.0","eslint-config-standard":"^5.3.1","eslint-plugin-promise":"^1.3.2","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","mocha":"^2.5.3","mock-spawn":"^0.2.6","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"8d5664604c026809a6c85c56e299ea80906c376c","_id":"lint-staged@2.0.0-beta.1","_shasum":"c65d016ebcfceae17efb5c36eb40ee99b333e687","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"c65d016ebcfceae17efb5c36eb40ee99b333e687","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-2.0.0-beta.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-2.0.0-beta.1.tgz_1467900259841_0.8268047994934022"},"directories":{}},"2.0.0":{"name":"lint-staged","version":"2.0.0","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint":"eslint --quiet --fix","git:add":"git add","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js"},"lint-staged":{"*.js":["eslint","git:add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^1.2.1","batchflow":"^0.4.0","minimatch":"^3.0.0","npm-which":"^2.0.0","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^2.9.0","eslint-config-standard":"^5.3.1","eslint-plugin-promise":"^1.3.2","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","mocha":"^2.5.3","mock-spawn":"^0.2.6","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"8b4f96d9e61083677ab2bbccff16b69331d690eb","_id":"lint-staged@2.0.0","_shasum":"45b3c28d83a39704635cf3c85fe43a15aec650a5","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"45b3c28d83a39704635cf3c85fe43a15aec650a5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-2.0.0.tgz_1467967058434_0.908250198001042"},"directories":{}},"2.0.1":{"name":"lint-staged","version":"2.0.1","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint":"eslint --quiet --fix","git:add":"git add","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js"},"lint-staged":{"*.js":["eslint","git:add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^1.2.1","batchflow":"^0.4.0","minimatch":"^3.0.0","npm-which":"^2.0.0","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^2.9.0","eslint-config-standard":"^5.3.1","eslint-plugin-promise":"^1.3.2","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","mocha":"^2.5.3","mock-spawn":"^0.2.6","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"6e70ce9ef3616858adf736880e642b4a54304084","_id":"lint-staged@2.0.1","_shasum":"80300f73174df151609402bf8d1ba48fc7a52221","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"80300f73174df151609402bf8d1ba48fc7a52221","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-2.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-2.0.1.tgz_1467981710155_0.1910939970985055"},"directories":{}},"2.0.2":{"name":"lint-staged","version":"2.0.2","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint":"eslint --quiet --fix","git:add":"git add","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js"},"lint-staged":{"*.js":["eslint","git:add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^1.2.1","batchflow":"^0.4.0","minimatch":"^3.0.0","npm-which":"^2.0.0","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^2.9.0","eslint-config-standard":"^5.3.1","eslint-plugin-promise":"^1.3.2","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","mocha":"^2.5.3","mock-spawn":"^0.2.6","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"5559673cb73784236883bd9de896abe3a9c58650","_id":"lint-staged@2.0.2","_shasum":"d6d7dd91000e45ccd222ec8d75a98509067737cc","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"d6d7dd91000e45ccd222ec8d75a98509067737cc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-2.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-2.0.2.tgz_1468258027364_0.15047916676849127"},"directories":{}},"3.0.0":{"name":"lint-staged","version":"3.0.0","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint":"eslint --quiet --fix","git:add":"git add","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"lint-staged":{"*.js":["eslint","git:add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^1.2.1","batchflow":"^0.4.0","execa":"^0.4.0","listr":"^0.4.3","minimatch":"^3.0.0","npm-which":"^3.0.1","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^2.9.0","eslint-config-standard":"^5.3.1","eslint-plugin-promise":"^1.3.2","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","is-promise":"^2.1.0","mocha":"^2.5.3","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"71c7dbd2077f8158183cfbd870da763bc6ad9b9f","_id":"lint-staged@3.0.0","_shasum":"469573afc9a92e062f376a6f10bceb6cc624f0d4","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"469573afc9a92e062f376a6f10bceb6cc624f0d4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.0.0.tgz_1469221087917_0.17514039832167327"},"directories":{}},"3.0.0-beta1":{"name":"lint-staged","version":"3.0.0-beta1","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint":"eslint --quiet --fix","git:add":"git add","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"lint-staged":{"*.js":["eslint","git:add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^1.2.1","batchflow":"^0.4.0","execa":"^0.4.0","listr":"^0.4.3","minimatch":"^3.0.0","npm-which":"^3.0.1","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^2.9.0","eslint-config-standard":"^5.3.1","eslint-plugin-promise":"^1.3.2","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","is-promise":"^2.1.0","mocha":"^2.5.3","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"02564f758a03a12a104fa6134ab1d0daab38e11a","_id":"lint-staged@3.0.0-beta1","_shasum":"35853a39f3c0cb55fe53119f146dcd0697ac9fc5","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"35853a39f3c0cb55fe53119f146dcd0697ac9fc5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.0.0-beta1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.0.0-beta1.tgz_1469263238771_0.06886602356098592"},"directories":{}},"2.0.3":{"name":"lint-staged","version":"2.0.3","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","eslint":"eslint --quiet --fix","git:add":"git add","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js"},"lint-staged":{"*.js":["eslint","git:add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^1.2.1","batchflow":"^0.4.0","cross-spawn":"^4.0.0","minimatch":"^3.0.0","npm-which":"^2.0.0","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^3.2.0","eslint-config-standard":"^5.3.1","eslint-plugin-promise":"^1.3.2","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","mocha":"^3.0.0","mock-spawn":"^0.2.6","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"0548880e4ff539ae5b487d54af2269eca9c54c57","_id":"lint-staged@2.0.3","_shasum":"854e55a50546fc4427bad6196dad85cbc2fdd486","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"854e55a50546fc4427bad6196dad85cbc2fdd486","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-2.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-2.0.3.tgz_1470131068266_0.7099702113773674"},"directories":{}},"3.0.1":{"name":"lint-staged","version":"3.0.1","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"lint-staged":{"*.js":["eslint --fix","git add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","batchflow":"^0.4.0","execa":"^0.4.0","listr":"^0.4.3","minimatch":"^3.0.0","npm-which":"^3.0.1","object-assign":"^4.1.0","ora":"^0.2.3","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^3.2.0","eslint-config-standard":"^6.0.0","eslint-plugin-promise":"^2.0.1","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","is-promise":"^2.1.0","mocha":"^2.5.3","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"b336559f5f922989bc9a1fac4722fc954d20c39f","_id":"lint-staged@3.0.1","_shasum":"eb12eb1852c0b755eadf9859a434178417552e5f","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"eb12eb1852c0b755eadf9859a434178417552e5f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.0.1.tgz_1473345314777_0.04053050000220537"},"directories":{}},"3.0.2":{"name":"lint-staged","version":"3.0.2","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"lint-staged":{"*.js":["eslint --fix","git add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","execa":"^0.4.0","listr":"^0.4.3","minimatch":"^3.0.0","npm-which":"^3.0.1","object-assign":"^4.1.0","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^3.2.0","eslint-config-standard":"^6.0.0","eslint-plugin-import":"^1.14.0","eslint-plugin-promise":"^2.0.1","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","is-promise":"^2.1.0","mocha":"^2.5.3","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"9667699954f8c3a166748a3f35175aa7b40f60d0","_id":"lint-staged@3.0.2","_shasum":"c0ebc24c60b083be156c7c2f49ab2758cc1e3edf","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"c0ebc24c60b083be156c7c2f49ab2758cc1e3edf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.0.2.tgz_1473708408454_0.510540162678808"},"directories":{}},"3.0.3":{"name":"lint-staged","version":"3.0.3","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-core/register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"lint-staged":{"*.js":["eslint --fix","git add"]},"pre-commit":["pre-commit"],"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","execa":"^0.4.0","listr":"^0.6.0","minimatch":"^3.0.0","npm-which":"^3.0.1","object-assign":"^4.1.0","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","eslint":"^3.2.0","eslint-config-standard":"^6.0.0","eslint-plugin-import":"^1.14.0","eslint-plugin-promise":"^2.0.1","eslint-plugin-standard":"^1.3.2","expect":"^1.20.2","is-promise":"^2.1.0","mocha":"^2.5.3","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1"},"gitHead":"e473c0fc93455f908fab42e57dfde87e8e379fd3","_id":"lint-staged@3.0.3","_shasum":"0bde028a3a6abbeaef9511d7d039dbd550a0c8d1","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"0bde028a3a6abbeaef9511d7d039dbd550a0c8d1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.0.3.tgz_1474557924183_0.11789485556073487"},"directories":{}},"4.0.0-beta-1":{"name":"lint-staged","version":"4.0.0-beta-1","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"pre-commit":"pre-commit","repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.6.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","eslint":"^3.7.1","eslint-config-okonet":"^1.1.1","eslint-config-standard":"^6.0.0","eslint-plugin-import":"^2.0.0","eslint-plugin-promise":"^2.0.1","eslint-plugin-standard":"^2.0.1","expect":"^1.20.2","fs-promise":"^0.5.0","is-promise":"^2.1.0","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1","tmp":"^0.0.29","yaspeller":"^2.9.1"},"gitHead":"0b277db2d9f9b4e9db20702a5af221c907eb6c63","_id":"lint-staged@4.0.0-beta-1","_shasum":"07a3fdc772dcc5e30ae67aba199378653c609c5e","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"07a3fdc772dcc5e30ae67aba199378653c609c5e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-4.0.0-beta-1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-4.0.0-beta-1.tgz_1476114479429_0.42830455326475203"},"directories":{}},"4.0.0-beta-2":{"name":"lint-staged","version":"4.0.0-beta-2","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"pre-commit":"pre-commit","repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.6.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","eslint":"^3.7.1","eslint-config-okonet":"^1.1.1","eslint-config-standard":"^6.0.0","eslint-plugin-import":"^2.0.0","eslint-plugin-promise":"^2.0.1","eslint-plugin-standard":"^2.0.1","expect":"^1.20.2","fs-promise":"^0.5.0","is-promise":"^2.1.0","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1","tmp":"^0.0.29","yaspeller":"^2.9.1"},"gitHead":"eb27ee252a0ac4636e413740fde6a67efad90d2e","_id":"lint-staged@4.0.0-beta-2","_shasum":"8b6dbeb6108c1c1664396fb779ec05d723bc5d73","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"8b6dbeb6108c1c1664396fb779ec05d723bc5d73","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-4.0.0-beta-2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-4.0.0-beta-2.tgz_1476114841406_0.034097159979864955"},"directories":{}},"3.1.0":{"name":"lint-staged","version":"3.1.0","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"pre-commit":"pre-commit","repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.6.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","eslint":"^3.7.1","eslint-config-okonet":"^1.1.1","eslint-config-standard":"^6.0.0","eslint-plugin-import":"^2.0.0","eslint-plugin-promise":"^2.0.1","eslint-plugin-standard":"^2.0.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1","tmp":"^0.0.29"},"gitHead":"b0d4f172819e28be6451c73acbef0ae35420c611","_id":"lint-staged@3.1.0","_shasum":"4bb3da3b98135b0a076606c5e4f129af034bfe48","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"4bb3da3b98135b0a076606c5e4f129af034bfe48","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.1.0.tgz_1476358555192_0.527178366901353"},"directories":{}},"3.1.1":{"name":"lint-staged","version":"3.1.1","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"npm run lint && mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"pre-commit":"pre-commit","repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.6.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","eslint":"^3.7.1","eslint-config-okonet":"^1.1.1","eslint-config-standard":"^6.0.0","eslint-plugin-import":"^2.0.0","eslint-plugin-promise":"^2.0.1","eslint-plugin-standard":"^2.0.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1","tmp":"^0.0.29"},"gitHead":"6f0b0ac0205634cd3cb65469f7a28168a9dc3918","_id":"lint-staged@3.1.1","_shasum":"857a7db9ad17ff01c96461010d2ae5b179b27637","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"857a7db9ad17ff01c96461010d2ae5b179b27637","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.1.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.1.1.tgz_1476710241162_0.4078461015596986"},"directories":{}},"3.2.0":{"name":"lint-staged","version":"3.2.0","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"pre-commit":"pre-commit","repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.6.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","eslint":"^3.7.1","eslint-config-okonet":"^1.1.1","eslint-config-standard":"^6.0.0","eslint-plugin-import":"^2.0.0","eslint-plugin-promise":"^2.0.1","eslint-plugin-standard":"^2.0.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1","tmp":"^0.0.29"},"gitHead":"b82e9daf8d11bcab00dad6a686903f41e07cb74f","_id":"lint-staged@3.2.0","_shasum":"6dac6e05b2ed37a9f36df6914577f2c5d58c5934","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"6dac6e05b2ed37a9f36df6914577f2c5d58c5934","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.0.tgz_1476801650352_0.760080739390105"},"directories":{}},"3.2.1":{"name":"lint-staged","version":"3.2.1","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"pre-commit":"pre-commit","repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.7.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1","tmp":"^0.0.29"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"8b19413d827db4d6fd74988fda47a117e41557c3","_id":"lint-staged@3.2.1","_shasum":"c7b7bcec417f6def1f6430e401fc881f0298d97a","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"okonet","email":"david+npm@netlify.com"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"dist":{"shasum":"c7b7bcec417f6def1f6430e401fc881f0298d97a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.1.tgz_1478260295184_0.4088644708972424"},"directories":{}},"3.2.2":{"name":"lint-staged","version":"3.2.2","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"lint-staged installed! Do not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","release":"npmpub","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u"},"pre-commit":"pre-commit","repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.9.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","npmpub":"^3.1.0","pre-commit":"^1.1.3","rewire":"^2.5.1","tmp":"^0.0.29"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"0cc22e0fcb76114da31aaacd9e650c57e3c94028","_id":"lint-staged@3.2.2","_shasum":"e46e23b0475470886b24fa026cfa849c281c09c1","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"e46e23b0475470886b24fa026cfa849c281c09c1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.2.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.2.tgz_1481128739065_0.01930850767530501"},"directories":{}},"3.2.3":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.9.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2","tmp":"^0.0.31"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.2.3","gitHead":"0d5a8416a6cf770fe78fdcd63b584cbfe7ec43c3","_id":"lint-staged@3.2.3","_shasum":"74a72945b79ceb63ca18b984b02dc176045285cf","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.2.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"74a72945b79ceb63ca18b984b02dc176045285cf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.3.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.3.tgz_1481728913668_0.04945782176218927"},"directories":{}},"3.2.4":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.9.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2","tmp":"^0.0.31"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.2.4","gitHead":"97ad4b467154e2ab28e61b13ca50c22f2dff6d76","_id":"lint-staged@3.2.4","_shasum":"c7601d80480850dc9ca29e76a1f8b49474f4c7a1","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.2.1","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"c7601d80480850dc9ca29e76a1f8b49474f4c7a1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.4.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.4.tgz_1482166386342_0.7595632753800601"},"directories":{}},"3.2.5":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.5.0","listr":"^0.9.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.2.5","gitHead":"968e0d8f015ddf077e36eda93ccff495f3605b3d","_id":"lint-staged@3.2.5","_shasum":"f0f874375e6cb2203784328e39ca10f0b6530251","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.3.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"f0f874375e6cb2203784328e39ca10f0b6530251","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.5.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.5.tgz_1483138410723_0.5810963264666498"},"directories":{}},"3.2.6":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.6.0","listr":"^0.9.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.2.6","gitHead":"6fd017bf38239f9af2b56d6100bf883207b60c99","_id":"lint-staged@3.2.6","_shasum":"5134b384015a275363d492c3849a387ca0e1d601","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.4.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"5134b384015a275363d492c3849a387ca0e1d601","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.6.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.6.tgz_1483956875249_0.841014455538243"},"directories":{}},"3.2.7":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.6.0","listr":"^0.9.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.2.7","gitHead":"41ae0cb3e36674a94afd69d15cafd43eb69e5969","_id":"lint-staged@3.2.7","_shasum":"2fc7007f1c89e267ad7bacefd3f6c5baeeb6516f","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.4.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"2fc7007f1c89e267ad7bacefd3f6c5baeeb6516f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.7.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.7.tgz_1484734479461_0.6156901901122183"},"directories":{}},"3.2.8":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.6.0","listr":"^0.9.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.2.8","gitHead":"be8aa3f0588e6cdd1c6aa49d124c6d9ee2c9d32c","_id":"lint-staged@3.2.8","_shasum":"95fd4eefda1eb0378a05e2f5cb0095d54b26b76e","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.4.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"95fd4eefda1eb0378a05e2f5cb0095d54b26b76e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.8.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.8.tgz_1485287684320_0.24600391811691225"},"directories":{}},"3.2.9":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.6.0","listr":"^0.10.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.2.9","gitHead":"22a1d774ca0c70eb1b628ded45f2e565bef0713d","_id":"lint-staged@3.2.9","_shasum":"3612b02de344e1fef959a6b2628483122b60c9ac","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.4.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"3612b02de344e1fef959a6b2628483122b60c9ac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.2.9.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.2.9.tgz_1485776204608_0.016803530044853687"},"directories":{}},"3.3.0":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.6.0","listr":"^0.10.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.3.0","gitHead":"9c45d8eec933a6667b3b5fc71b76bb25108e5e58","_id":"lint-staged@3.3.0","_shasum":"29eb789b852208201a41fa85c3ac036f60606cd6","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.4.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"29eb789b852208201a41fa85c3ac036f60606cd6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.3.0.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.3.0.tgz_1485788001202_0.7125252960249782"},"directories":{}},"3.3.1":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"mocha --compilers js:babel-register ./test/*.spec.js","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.6.0","listr":"^0.11.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4","which":"^1.2.11"},"devDependencies":{"babel-core":"^6.10.4","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","mocha":"^3.1.0","npm-check":"^5.2.2","pre-commit":"^1.1.3","rewire":"^2.5.1","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.3.1","gitHead":"5a44bea4890a9da1d34bb7d4f6b67fd376c2c118","_id":"lint-staged@3.3.1","_shasum":"b725d98a2be1f82cb228069fab682f503c95234d","_from":".","_npmVersion":"2.15.11","_nodeVersion":"7.5.0","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"b725d98a2be1f82cb228069fab682f503c95234d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.3.1.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.3.1.tgz_1487532418746_0.6837693345732987"},"directories":{}},"3.3.2":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"jest --coverage","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.6.0","listr":"^0.11.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-jest":"^19.0.0","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jest":"^19.0.2","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","npm-check":"^5.2.2","pre-commit":"^1.1.3","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.3.2","gitHead":"3acd6c7b38ca4d95c7dbf4d9f20d8f61a3a44e64","_id":"lint-staged@3.3.2","_shasum":"c133d83185ce3105289f10335273742678e207f3","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.2","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"c133d83185ce3105289f10335273742678e207f3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.3.2.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/lint-staged-3.3.2.tgz_1489396524492_0.5600262184161693"},"directories":{}},"3.4.0":{"name":"lint-staged","description":"Lint files staged by git","main":"index.js","bin":{"lint-staged":"index.js"},"scripts":{"postinstall":"echo \"🚫💩 lint-staged installed! \nDo not forget to configure it. See https://github.com/okonet/lint-staged/blob/master/README.md\" && exit 0","lint":"eslint .","lint:fix":"npm run lint -- --fix","pre-commit":"node index.js","test":"jest --coverage","deps":"npm-check -s","deps:update":"npm-check -u","semantic-release":"semantic-release pre && npm publish && semantic-release post"},"pre-commit":"pre-commit","greenkeeper":{"ignore":["cosmiconfig"]},"repository":{"type":"git","url":"git+https://github.com/okonet/lint-staged.git"},"keywords":["lint","git","staged","javascript","css","scss","sass","eslint","stylelint","code","quality"],"author":{"name":"Andrey Okonetchnikov","email":"andrey@okonet.ru"},"license":"MIT","bugs":{"url":"https://github.com/okonet/lint-staged/issues"},"homepage":"https://github.com/okonet/lint-staged#readme","dependencies":{"app-root-path":"^2.0.0","cosmiconfig":"^1.1.0","execa":"^0.6.0","listr":"^0.11.0","minimatch":"^3.0.0","npm-which":"^3.0.1","staged-git-files":"0.0.4"},"devDependencies":{"babel-core":"^6.10.4","babel-jest":"^19.0.0","babel-preset-es2015":"^6.9.0","babel-preset-stage-0":"^6.5.0","babel-register":"^6.16.3","cz-conventional-changelog":"^1.2.0","eslint":"^3.9.1","eslint-config-okonet":"^1.1.1","expect":"^1.20.2","is-promise":"^2.1.0","jest":"^19.0.2","jsonlint":"^1.6.2","jsonlint-cli":"^1.0.1","npm-check":"^5.2.2","pre-commit":"^1.1.3","semantic-release":"^6.3.2"},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"version":"3.4.0","gitHead":"b0204ee4fc971a4099e6145bbd65dab188f0d081","_id":"lint-staged@3.4.0","_shasum":"52fa85dfc92bb1c6fe8ad0d0d98ca13924e03e4b","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.2","_npmUser":{"name":"okonet","email":"andrey@okonet.ru"},"dist":{"shasum":"52fa85dfc92bb1c6fe8ad0d0d98ca13924e03e4b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/lint-staged/-/lint-staged-3.4.0.tgz"},"maintainers":[{"name":"okonet","email":"andrey@okonet.ru"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/lint-staged-3.4.0.tgz_1489432023285_0.5580256090033799"},"directories":{}}},"name":"lint-staged","time":{"modified":"2017-03-17T23:00:27.271Z","created":"2016-01-15T11:00:29.432Z","0.1.0":"2016-01-15T11:00:29.432Z","0.1.1":"2016-01-15T11:08:31.619Z","0.2.0":"2016-04-06T17:44:04.371Z","0.2.1":"2016-04-06T23:00:19.611Z","0.2.2":"2016-05-02T09:09:34.638Z","1.0.0":"2016-06-07T10:33:14.122Z","1.0.1":"2016-06-07T12:42:49.154Z","1.0.2":"2016-06-30T09:55:11.240Z","2.0.0-beta.1":"2016-07-07T14:04:21.093Z","2.0.0":"2016-07-08T08:37:39.637Z","2.0.1":"2016-07-08T12:41:51.510Z","2.0.2":"2016-07-11T17:27:09.029Z","3.0.0":"2016-07-22T20:58:09.797Z","3.0.0-beta1":"2016-07-23T08:40:40.735Z","2.0.3":"2016-08-02T09:44:30.004Z","3.0.1":"2016-09-08T14:35:16.548Z","3.0.2":"2016-09-12T19:26:50.366Z","3.0.3":"2016-09-22T15:25:25.694Z","4.0.0-beta-1":"2016-10-10T15:48:01.115Z","4.0.0-beta-2":"2016-10-10T15:54:03.548Z","3.1.0":"2016-10-13T11:35:56.207Z","3.1.1":"2016-10-17T13:17:23.047Z","3.2.0":"2016-10-18T14:40:52.658Z","3.2.1":"2016-11-04T11:51:37.306Z","3.2.2":"2016-12-07T16:39:00.931Z","3.2.3":"2016-12-14T15:21:55.514Z","3.2.4":"2016-12-19T16:53:06.955Z","3.2.5":"2016-12-30T22:53:32.891Z","3.2.6":"2017-01-09T10:14:35.979Z","3.2.7":"2017-01-18T10:14:40.298Z","3.2.8":"2017-01-24T19:54:46.183Z","3.2.9":"2017-01-30T11:36:46.514Z","3.3.0":"2017-01-30T14:53:23.323Z","3.3.1":"2017-02-19T19:26:59.413Z","3.3.2":"2017-03-13T09:15:25.168Z","3.4.0":"2017-03-13T19:07:05.399Z"},"readmeFilename":"README.md","homepage":"https://github.com/okonet/lint-staged#readme"}