{"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"dist-tags":{"latest":"8.4.7"},"author":{"name":"yiminghe@gmail.com"},"description":"React Calendar","readme":"# rc-calendar\n---\n\nReact Calendar\n\n[![NPM version][npm-image]][npm-url]\n[![build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![gemnasium deps][gemnasium-image]][gemnasium-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: http://img.shields.io/npm/v/rc-calendar.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/rc-calendar\n[travis-image]: https://img.shields.io/travis/react-component/calendar.svg?style=flat-square\n[travis-url]: https://travis-ci.org/react-component/calendar\n[coveralls-image]: https://img.shields.io/coveralls/react-component/calendar.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/react-component/calendar?branch=master\n[gemnasium-image]: http://img.shields.io/gemnasium/react-component/calendar.svg?style=flat-square\n[gemnasium-url]: https://gemnasium.com/react-component/calendar\n[node-image]: https://img.shields.io/badge/node.js-%3E=_0.10-green.svg?style=flat-square\n[node-url]: http://nodejs.org/download/\n[download-image]: https://img.shields.io/npm/dm/rc-calendar.svg?style=flat-square\n[download-url]: https://npmjs.org/package/rc-calendar\n\n## Screenshots\n\n<img src=\"https://img.alicdn.com/tps/TB1mYC8KVXXXXaHXXXXXXXXXXXX-566-678.png\" width=\"288\"/>\n\n<img src=\"https://img.alicdn.com/tps/TB1KW1HKVXXXXa9aXXXXXXXXXXX-578-694.png\" width=\"288\"/>\n\n<img src=\"https://img.alicdn.com/tps/TB1QYqPKVXXXXasXVXXXXXXXXXX-1196-712.png\" width=\"288\"/>\n\n<img src=\"https://img.alicdn.com/tps/TB1nAGDKVXXXXXvapXXXXXXXXXX-1206-730.png\" width=\"500\"/>\n\n## Feature\n\n* support ie9,ie9+,chrome,firefox,safari\n* support date, month, year, decade select panel\n* support week number\n* support en_US and zh_CN locale(UI), use moment.utcOffset to set timezone\n* support aria and keyboard accessibility\n\n### Keyboard\n\n* Previous month (PageUp)\n* Next month (PageDown)\n* tab into hour input: Last hour(Up), Next hour(Down)\n* tab into hour input: Last minute(Up), Next minute(Down)\n* tab into hour input: Last second(Up), Next second(Down)\n* Last year (Control + left)\n* Next year (Control + right)\n\n## install\n\n[![rc-calendar](https://nodei.co/npm/rc-calendar.png)](https://npmjs.org/package/rc-calendar)\n\n## Usage\n\n```js\nimport Calendar from 'rc-calendar';\nimport React from 'react';\nimport ReactDOM from 'react-dom';\nReactDOM.render(<Calendar />, container);\n```\n\n## Development\n\n```\nnpm install\nnpm start\n```\n\n## Example\n\nhttp://localhost:8002/examples/\n\nonline example:\n\nhttp://react-component.github.io/calendar/examples/index.html\n\n## API\n\n### rc-calendar props\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n    <tr>\n        <th style=\"width: 100px;\">name</th>\n        <th style=\"width: 50px;\">type</th>\n        <th style=\"width: 50px;\">default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n        <tr>\n          <td>prefixCls</td>\n          <td>String</td>\n          <td></td>\n          <td>prefixCls of this component</td>\n        </tr>\n        <tr>\n          <td>className</td>\n          <td>String</td>\n          <td></td>\n          <td>additional css class of root dom node</td>\n        </tr>\n        <tr>\n          <td>style</td>\n          <td>Object</td>\n          <td></td>\n          <td>additional style of root dom node</td>\n        </tr>\n        <tr>\n          <td>dateRender</td>\n          <td>(current, value) => React.Node</td>\n          <td></td>\n          <td>date cell</td>\n        </tr>\n        <tr>\n          <td>renderSidebar</td>\n          <td>() => React.Node</td>\n          <td></td>\n          <td>side bar</td>\n        </tr>\n        <tr>\n          <td>renderFooter</td>\n          <td>() => React.Node</td>\n          <td></td>\n          <td>extra footer</td>\n        </tr>\n        <tr>\n          <td>value</td>\n          <td>moment</td>\n          <td></td>\n          <td>current value like input's value</td>\n        </tr>\n        <tr>\n          <td>defaultValue</td>\n          <td>moment</td>\n          <td></td>\n          <td>defaultValue like input's defaultValue</td>\n        </tr>\n        <tr>\n          <td>locale</td>\n          <td>Object</td>\n          <td>import from 'rc-calendar/lib/locale/en_US'</td>\n          <td>calendar locale</td>\n        </tr>\n        <tr>\n          <td>format</td>\n          <td>String</td>\n          <td>depends on whether you set timePicker and your locale</td>\n          <td>use to format/parse date(without time) value to/from input</td>\n        </tr>\n        <tr>\n          <td>disabledDate</td>\n          <td>Function(current:moment):Boolean</td>\n          <td></td>\n          <td>whether to disable select of current date</td>\n        </tr>\n        <tr>\n          <td>disabledTime</td>\n          <td>Function(current:moment):Object</td>\n          <td></td>\n          <td>a function which return a object with member of disabledHours/disabledMinutes/disabledSeconds according to rc-time-picker</td>\n        </tr>\n        <tr>\n          <td>showDateInput</td>\n          <td>Boolean</td>\n          <td>true</td>\n          <td>whether to show input on top of calendar panel</td>\n        </tr>\n        <tr>\n          <td>showWeekNumber</td>\n          <td>Boolean</td>\n          <td>false</td>\n          <td>whether to show week number of year</td>\n        </tr>\n        <tr>\n          <td>showToday</td>\n          <td>Boolean</td>\n          <td>true</td>\n          <td>whether to show today button</td>\n        </tr>\n        <tr>\n          <td>showOk</td>\n          <td>Boolean</td>\n          <td>auto</td>\n          <td>whether has ok button in footer</td>\n        </tr>\n        <tr>\n          <td>timePicker</td>\n          <td>React Element</td>\n          <td></td>\n          <td>rc-timer-picker/lib/module/panel element</td>\n        </tr>\n        <tr>\n          <td>onSelect</td>\n          <td>Function(date: moment)</td>\n          <td></td>\n          <td>called when a date is selected from calendar</td>\n        </tr>\n        <tr>\n          <td>onChange</td>\n          <td>Function(date: moment)</td>\n          <td></td>\n          <td>called when a date is changed inside calendar (next year/next month/keyboard)</td>\n        </tr>\n        <tr>\n          <td>dateInputPlaceholder</td>\n          <td>String</td>\n          <td></td>\n          <td>date input's placeholder</td>\n        </tr>\n    </tbody>\n</table>\n\n\n### rc-calendar/lib/RangeCalendar props\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n    <tr>\n        <th style=\"width: 100px;\">name</th>\n        <th style=\"width: 50px;\">type</th>\n        <th style=\"width: 50px;\">default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n        <tr>\n          <td>prefixCls</td>\n          <td>String</td>\n          <td></td>\n          <td>prefixCls of this component</td>\n        </tr>\n        <tr>\n          <td>className</td>\n          <td>String</td>\n          <td></td>\n          <td>additional css class of root dom node</td>\n        </tr>\n        <tr>\n          <td>style</td>\n          <td>Object</td>\n          <td></td>\n          <td>additional style of root dom node</td>\n        </tr>\n        <tr>\n          <td>renderSidebar</td>\n          <td>() => React.Node</td>\n          <td></td>\n          <td>side bar</td>\n        </tr>\n        <tr>\n          <td>renderFooter</td>\n          <td>() => React.Node</td>\n          <td></td>\n          <td>extra footer</td>\n        </tr>\n        <tr>\n          <td>selectedValue</td>\n          <td>moment[]</td>\n          <td></td>\n          <td>current selected value range. with two elements.</td>\n        </tr>\n        <tr>\n          <td>defaultSelectedValue</td>\n          <td>moment[]</td>\n          <td></td>\n          <td>default selected value range</td>\n        </tr>\n        <tr>\n          <td>locale</td>\n          <td>Object</td>\n          <td>import from 'rc-calendar/lib/locale/en_US'</td>\n          <td>calendar locale</td>\n        </tr>\n        <tr>\n          <td>format</td>\n          <td>String</td>\n          <td>depends on whether you set timePicker and your locale</td>\n          <td>use to format/parse date(without time) value to/from input</td>\n        </tr>\n        <tr>\n          <td>disabledDate</td>\n          <td>Function(current:moment):Boolean</td>\n          <td></td>\n          <td>whether to disable select of current date</td>\n        </tr>\n        <tr>\n          <td>showWeekNumber</td>\n          <td>Boolean</td>\n          <td>false</td>\n          <td>whether to show week number of year</td>\n        </tr>\n        <tr>\n          <td>showToday</td>\n          <td>Boolean</td>\n          <td>true</td>\n          <td>whether to show today button</td>\n        </tr>\n        <tr>\n          <td>showOk</td>\n          <td>Boolean</td>\n          <td>auto</td>\n          <td>whether has ok button in footer</td>\n        </tr>\n        <tr>\n          <td>showClear</td>\n          <td>Boolean</td>\n          <td>false</td>\n          <td>whether has clear button in header</td>\n        </tr>\n        <tr>\n          <td>timePicker</td>\n          <td>React Element</td>\n          <td></td>\n          <td>rc-timer-picker/lib/module/panel element</td>\n        </tr>\n        <tr>\n          <td>onSelect</td>\n          <td>Function(date: moment[])</td>\n          <td></td>\n          <td>called when a date range is selected from calendar</td>\n        </tr>\n        <tr>\n          <td>onChange</td>\n          <td>Function(date: moment[])</td>\n          <td></td>\n          <td>called when a date range is changed inside calendar (next year/next month/keyboard)</td>\n        </tr>\n        <tr>\n          <td>dateInputPlaceholder</td>\n          <td>String[]</td>\n          <td></td>\n          <td>range date input's placeholders</td>\n        </tr>\n        <tr>\n          <td>disabledTime</td>\n          <td>Function(current: moment[], type:'start'|'end'):Object</td>\n          <td></td>\n          <td>a function which return a object with member of disabledHours/disabledMinutes/disabledSeconds according to rc-time-picker</td>\n        </tr>\n        <tr>\n          <td>type</td>\n          <td>enum('both','start', 'end')</td>\n          <td>both</td>\n          <td>whether fix start or end selected value. check start-end-range example</td>\n        </tr>\n    </tbody>\n</table>\n\n### rc-calendar/lib/MonthCalendar props\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n    <tr>\n        <th style=\"width: 100px;\">name</th>\n        <th style=\"width: 50px;\">type</th>\n        <th style=\"width: 50px;\">default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n        <tr>\n          <td>prefixCls</td>\n          <td>String</td>\n          <td></td>\n          <td>prefixCls of this component</td>\n        </tr>\n        <tr>\n          <td>className</td>\n          <td>String</td>\n          <td></td>\n          <td>additional css class of root dom node</td>\n        </tr>\n        <tr>\n          <td>style</td>\n          <td>Object</td>\n          <td></td>\n          <td>additional style of root dom node</td>\n        </tr>\n        <tr>\n          <td>value</td>\n          <td>moment</td>\n          <td></td>\n          <td>current value like input's value</td>\n        </tr>\n        <tr>\n          <td>defaultValue</td>\n          <td>moment</td>\n          <td></td>\n          <td>defaultValue like input's defaultValue</td>\n        </tr>\n        <tr>\n          <td>locale</td>\n          <td>Object</td>\n          <td>import from 'rc-calendar/lib/locale/en_US'</td>\n          <td>calendar locale</td>\n        </tr>\n        <tr>\n          <td>disabledDate</td>\n          <td>Function(current:moment):Boolean</td>\n          <td></td>\n          <td>whether to disable select of current month</td>\n        </tr>\n        <tr>\n          <td>onSelect</td>\n          <td>Function(date: moment)</td>\n          <td></td>\n          <td>called when a date is selected from calendar</td>\n        </tr>\n        <tr>\n          <td>monthCellRender</td>\n          <td>function</td>\n          <td></td>\n          <td>Custom month cell render method</td>\n        </tr>\n        <tr>\n          <td>dateCellRender</td>\n          <td>function</td>\n          <td></td>\n          <td>Custom date cell render method</td>\n        </tr>\n        <tr>\n          <td>monthCellContentRender</td>\n          <td>function</td>\n          <td></td>\n          <td>Custom month cell content render method,the content will be appended to the cell.</td>\n        </tr>\n        <tr>\n        <tr>\n          <td>onChange</td>\n          <td>Function(date: moment)</td>\n          <td></td>\n          <td>called when a date is changed inside calendar (next year/next month/keyboard)</td>\n        </tr>\n    </tbody>\n</table>\n\n### rc-calendar/lib/Picker props\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n    <tr>\n        <th style=\"width: 100px;\">name</th>\n        <th style=\"width: 50px;\">type</th>\n        <th style=\"width: 50px;\">default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n        <tr>\n          <td>prefixCls</td>\n          <td>String</td>\n          <td></td>\n          <td>prefixCls of this component</td>\n        </tr>\n        <tr>\n          <td>calendar</td>\n          <td>Calendar React Element</td>\n          <td></td>\n          <td></td>\n        </tr>\n        <tr>\n          <td>disabled</td>\n          <td>Boolean</td>\n          <td></td>\n          <td>whether picker is disabled</td>\n        </tr>\n        <tr>\n          <td>placement</td>\n          <td>String|Object</td>\n          <td></td>\n          <td>one of ['left','right','top','bottom', 'topLeft', 'topRight', 'bottomLeft', 'bottomRight']</td>\n        </tr>\n        <tr>\n          <td>align</td>\n          <td>Object: alignConfig of [dom-align](https://github.com/yiminghe/dom-align)</td>\n          <td></td>\n          <td>value will be merged into placement's align config.</td>\n        </tr>\n        <tr>\n          <td>animation</td>\n          <td>String</td>\n          <td></td>\n          <td>index.css support 'slide-up'</td>\n        </tr>\n        <tr>\n          <td>transitionName</td>\n          <td>String</td>\n          <td></td>\n          <td>css class for animation</td>\n        </tr>\n        <tr>\n          <td>value</td>\n          <td>moment|moment[]</td>\n          <td></td>\n          <td>current value like input's value</td>\n        </tr>\n        <tr>\n          <td>defaultValue</td>\n          <td>moment|moment[]</td>\n          <td></td>\n          <td>defaultValue like input's defaultValue</td>\n        </tr>\n        <tr>\n          <td>onChange</td>\n          <td>Function</td>\n          <td></td>\n          <td>called when select a different value</td>\n        </tr>\n        <tr>\n          <td>onOpenChange</td>\n          <td>(open:boolean) => void</td>\n          <td></td>\n          <td>called when open/close picker</td>\n        </tr>\n        <tr>\n          <td>open</td>\n          <td>Boolean</td>\n          <td></td>\n          <td>current open state of picker. controlled prop</td>\n        </tr>\n        <tr>\n          <td>getCalendarContainer</td>\n          <td>() => HTMLElement</td>\n          <td>() => {return document.body;}</td>\n          <td>dom node where calendar to be rendered into</td>\n        </tr>\n    </tbody>\n</table>\n\n### rc-calendar/lib/FullCalendar props\n\n<table class=\"table table-bordered table-striped\">\n    <thead>\n    <tr>\n        <th style=\"width: 100px;\">name</th>\n        <th style=\"width: 50px;\">type</th>\n        <th style=\"width: 50px;\">default</th>\n        <th>description</th>\n    </tr>\n    </thead>\n    <tbody>\n        <tr>\n          <td>prefixCls</td>\n          <td>String</td>\n          <td></td>\n          <td>prefixCls of this component</td>\n        </tr>\n        <tr>\n          <td>Select</td>\n          <td>React Component Class</td>\n          <td></td>\n          <td>rc-select Component Class</td>\n        </tr>\n        <tr>\n          <td>value</td>\n          <td>moment</td>\n          <td></td>\n          <td>current value like input's value</td>\n        </tr>\n        <tr>\n          <td>defaultValue</td>\n          <td>moment</td>\n          <td></td>\n          <td>defaultValue like input's defaultValue</td>\n        </tr>\n        <tr>\n          <td>defaultType</td>\n          <td>string</td>\n          <td>date</td>\n          <td>default panel type: date/month</td>\n        </tr>\n        <tr>\n          <td>type</td>\n          <td>string</td>\n          <td></td>\n          <td>panel type: date/month</td>\n        </tr>\n        <tr>\n          <td>onTypeChange</td>\n          <td>function(type)</td>\n          <td></td>\n          <td>called when panel type change</td>\n        </tr>\n        <tr>\n          <td>fullscreen</td>\n          <td>bool</td>\n          <td>false</td>\n          <td></td>\n        </tr>\n        <tr>\n          <td>monthCellRender</td>\n          <td>function</td>\n          <td></td>\n          <td>Custom month cell render method</td>\n        </tr>\n        <tr>\n          <td>dateCellRender</td>\n          <td>function</td>\n          <td></td>\n          <td>Custom date cell render method</td>\n        </tr>\n        <tr>\n          <td>monthCellContentRender</td>\n          <td>function</td>\n          <td></td>\n          <td>Custom month cell content render method,the content will be appended to the cell.</td>\n        </tr>\n        <tr>\n          <td>dateCellContentRender</td>\n          <td>function</td>\n          <td></td>\n          <td>Custom date cell content render method,the content will be appended to the cell.</td>\n        </tr>        <tr>\n          <td>onSelect</td>\n          <td>Function(date: moment)</td>\n          <td></td>\n          <td>called when a date is selected from calendar</td>\n        </tr>\n    </tbody>\n</table>\n\n## Test Case\n\n```\nnpm test\nnpm run chrome-test\n```\n\n## Coverage\n\n```\nnpm run coverage\n```\n\nopen coverage/ dir\n\n## License\n\nrc-calendar is released under the MIT license.\n","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"users":{"326060588":true,"juanah":true,"davidjsalazarmoreno":true,"adrianpark":true,"jian263994241":true,"tedyhy":true},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"versions":{"1.0.0":{"name":"rc-calendar","version":"1.0.0","description":"calendar ui component for react","keywords":["react","react-calendar"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","spm":{},"config":{"port":8001},"scripts":{"start":"node --harmony server","publish":"gulp tag","lint":"gulp lint","test":"","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"es5-shim":"~4.0.5","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-less":"~2.0.1","gulp-rename":"~1.2.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","koa":"~0.13.0","koa-body":"^0.4.0","koa-jsx":"^1.1.3","koa-modularize":"^3.0.0","koa-mount":"~1.3.0","koa-node-jscover":"^1.0.0","koa-serve-index":"~1.0.1","koa-static":"~1.4.7","mocha":"~2.0.1","modulex":"~1.7.3","node-jscover":"^0.6.8","node-jscover-coveralls":"^1.0.13","precommit-hook":"^1.0.7","react":"~0.12.1","react-tools":"~0.12.1","simulate-dom-event":"^1.0.1","sinon":"^1.12.1"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"6e2fcbabbbe02aad9b25739e6a868ca2e4349a8c","_id":"rc-calendar@1.0.0","_shasum":"26633d5e2d9b9f896a048004feaae305e867839d","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"26633d5e2d9b9f896a048004feaae305e867839d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"rc-calendar","version":"1.1.0","description":"calendar ui component for react","keywords":["react","react-calendar","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","spm":{},"config":{"port":8001},"scripts":{"start":"node --harmony server","publish":"gulp tag","lint":"gulp lint","test":"","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"es5-shim":"~4.0.5","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-less":"~2.0.1","gulp-rename":"~1.2.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","koa":"~0.13.0","koa-body":"^0.4.0","koa-jsx":"^1.1.3","koa-modularize":"^3.0.0","koa-mount":"~1.3.0","koa-node-jscover":"^1.0.0","koa-serve-index":"~1.0.1","koa-static":"~1.4.7","mocha":"~2.0.1","modulex":"~1.7.3","node-jscover":"^0.6.8","node-jscover-coveralls":"^1.0.13","precommit-hook":"^1.0.7","react":"~0.12.1","react-tools":"~0.12.1","simulate-dom-event":"^1.0.1","sinon":"^1.12.1"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"a8a4aca0737df01dc8eaadc8df96da1e24ff35bf","_id":"rc-calendar@1.1.0","_shasum":"95eca45db715e442fe1137563546e03129a04269","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"95eca45db715e442fe1137563546e03129a04269","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.1.0.tgz"},"directories":{}},"1.2.0":{"name":"rc-calendar","version":"1.2.0","description":"calendar ui component for react","keywords":["react","react-calendar","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","spm":{},"config":{"port":8001},"scripts":{"start":"node --harmony server","publish":"gulp tag","lint":"gulp lint","test":"","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"console-polyfill":"^0.1.2","es5-shim":"~4.0.5","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-less":"~2.0.1","gulp-rename":"~1.2.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","koa":"~0.13.0","koa-body":"^0.4.0","koa-jsx":"^1.1.3","koa-modularize":"^3.0.0","koa-mount":"~1.3.0","koa-node-jscover":"^1.0.0","koa-serve-index":"~1.0.1","koa-static":"~1.4.7","mocha":"~2.0.1","modulex":"~1.7.3","node-jscover":"^0.6.8","node-jscover-coveralls":"^1.0.13","precommit-hook":"^1.0.7","react":"~0.12.1","react-tools":"~0.12.1","simulate-dom-event":"^1.0.1","sinon":"^1.12.1"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"c346dee4869cf9c13b3657bd977dced489d69218","_id":"rc-calendar@1.2.0","_shasum":"f8dc869a3805a6c4dca5e7d8f1acd88f8b30ca2b","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f8dc869a3805a6c4dca5e7d8f1acd88f8b30ca2b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"rc-calendar","version":"1.2.1","description":"calendar ui component for react","keywords":["react","react-calendar","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","spm":{},"config":{"port":8001},"scripts":{"start":"node --harmony server","publish":"gulp tag","lint":"gulp lint","test":"","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"console-polyfill":"^0.1.2","es5-shim":"~4.0.5","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-less":"~2.0.1","gulp-rename":"~1.2.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","koa":"~0.13.0","koa-body":"^0.4.0","koa-jsx":"^1.1.3","koa-modularize":"^3.0.0","koa-mount":"~1.3.0","koa-node-jscover":"^1.0.0","koa-serve-index":"~1.0.1","koa-static":"~1.4.7","mocha":"~2.0.1","modulex":"~1.7.3","node-jscover":"^0.6.8","node-jscover-coveralls":"^1.0.13","precommit-hook":"^1.0.7","react":"~0.12.1","react-tools":"~0.12.1","simulate-dom-event":"^1.0.1","sinon":"^1.12.1"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"1d9ccc7516a9197ab6aa285297d95694844cccab","_id":"rc-calendar@1.2.1","_shasum":"3451b174fc9d773144c28aa12eb7198826ec87a3","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3451b174fc9d773144c28aa12eb7198826ec87a3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.2.1.tgz"},"directories":{}},"1.2.2":{"name":"rc-calendar","version":"1.2.2","description":"calendar ui component for react","keywords":["react","react-calendar","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","spm":{},"config":{"port":8001},"scripts":{"start":"node --harmony server","publish":"gulp tag","lint":"gulp lint","test":"","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"console-polyfill":"^0.1.2","es5-shim":"~4.0.5","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-less":"~2.0.1","gulp-rename":"~1.2.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","koa":"~0.13.0","koa-body":"^0.4.0","koa-jsx":"^1.1.3","koa-modularize":"^3.0.0","koa-mount":"~1.3.0","koa-node-jscover":"^1.0.0","koa-serve-index":"~1.0.1","koa-static":"~1.4.7","mocha":"~2.0.1","modulex":"~1.7.3","node-jscover":"^0.6.8","node-jscover-coveralls":"^1.0.13","precommit-hook":"^1.0.7","react":"~0.12.1","react-tools":"~0.12.1","simulate-dom-event":"^1.0.1","sinon":"^1.12.1"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","browserify-shim":"^3.8.0","browserify-jsx":"^0.1.0"},"gitHead":"34c44e9d66eca98108c7da334aebe3fa1e9f2ebf","_id":"rc-calendar@1.2.2","_shasum":"b5e5943224198c717cfb9dd8d5beeacb9da3a2f7","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b5e5943224198c717cfb9dd8d5beeacb9da3a2f7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.2.2.tgz"},"directories":{}},"1.2.3":{"name":"rc-calendar","version":"1.2.3","description":"calendar ui component for react","keywords":["react","react-calendar","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"prepublish":"gulp less","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && gulp tag","lint":"gulp lint","test":"","saucelabs":"DEBUG=saucelabs-runner gulp saucelabs","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/rc-server/node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-less":"~2.0.1","gulp-rename":"~1.2.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.0.0","rc-test-utils":"~1.0.0","react":"~0.12.1","saucelabs-runner":"~2.0.0","simulate-dom-event":"^1.0.1","sinon":"^1.12.1","wd":"^0.3.11"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"}},"gitHead":"3b2558cb27aa52ec36ec11b1dd4e90b3da17a5bb","_id":"rc-calendar@1.2.3","_shasum":"7574109801ee1cd9f442e276d59a398a1830aa39","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7574109801ee1cd9f442e276d59a398a1830aa39","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.2.3.tgz"},"directories":{}},"1.2.4":{"name":"rc-calendar","version":"1.2.4","description":"calendar ui component for react","keywords":["react","react-calendar","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"prepublish":"gulp less","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && gulp tag","lint":"gulp lint","test":"","saucelabs":"DEBUG=saucelabs-runner gulp saucelabs","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/rc-server/node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","gh-changelog":"^1.0.5","gulp":"^3.8.7","gulp-jscs":"^1.1.0","gulp-jshint":"^1.8.4","gulp-jsx":"~0.6.0","gulp-less":"~2.0.1","gulp-rename":"~1.2.0","gulp-util":"^3.0.1","jquery":"~1.11.1","jshint":"^2.5.5","jshint-stylish":"^0.4.0","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.0.0","rc-test-utils":"~1.0.0","react":"~0.12.1","saucelabs-runner":"~2.0.0","simulate-dom-event":"^1.0.1","sinon":"^1.12.1","wd":"^0.3.11"},"precommit":["lint"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"output":["lib/locale/*.js"]},"gitHead":"158db6aeb0223b0a84f9e740daa7740a1d5621f3","_id":"rc-calendar@1.2.4","_shasum":"0aa93bdda7a81bd276c9ded113cac87a8fa7c559","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"0aa93bdda7a81bd276c9ded113cac87a8fa7c559","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.2.4.tgz"},"directories":{}},"1.3.0":{"name":"rc-calendar","version":"1.3.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"DEBUG=saucelabs-runner rc-tools run saucelabs","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/rc-server/node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"precommit-hook":"^1.0.7","rc-server":"^1.4.2","rc-tools":"^1.0.1","async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1"},"output":["lib/locale/*.js"]},"gitHead":"8b3a1ee4b0adefab44dbe013b07d0a22ffc41bb8","_id":"rc-calendar@1.3.0","_shasum":"c7f3443fea9267291a7a153aa2e9dab7e688fa2f","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c7f3443fea9267291a7a153aa2e9dab7e688fa2f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.3.0.tgz"},"directories":{}},"1.4.0":{"name":"rc-calendar","version":"1.4.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"DEBUG=saucelabs-runner rc-tools run saucelabs","browser-test":"mocha-phantomjs http://localhost:$npm_package_config_port/tests/runner.html","browser-test-cover":"mocha-phantomjs -R node_modules/rc-server/node_modules/node-jscover/lib/reporters/mocha/console http://localhost:$npm_package_config_port/tests/runner.html?coverage"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"output":["lib/locale/*.js"]},"gitHead":"91dc6edd57b29f144344e196923b759953ef49e2","_id":"rc-calendar@1.4.0","_shasum":"70a66914fc65ab0d81874ac5ccd1a78373a8dcf1","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"70a66914fc65ab0d81874ac5ccd1a78373a8dcf1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.4.0.tgz"},"directories":{}},"1.4.1":{"name":"rc-calendar","version":"1.4.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React","jquery":"global:jQuery"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"output":["lib/locale/*.js"]},"gitHead":"a0d7d4e508ecbee676f56a60efa8b931df4aa098","_id":"rc-calendar@1.4.1","_shasum":"543046f9b5e5c2e775a03503d78520ddb1da6fb1","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"543046f9b5e5c2e775a03503d78520ddb1da6fb1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.4.1.tgz"},"directories":{}},"1.5.0":{"name":"rc-calendar","version":"1.5.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"b7fdbd2c08e084aa06cacdd27fcb981e61989e10","_id":"rc-calendar@1.5.0","_shasum":"41441d8fb6e41ad24349af3a1cb01846e604c407","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"41441d8fb6e41ad24349af3a1cb01846e604c407","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.0.tgz"},"directories":{}},"1.5.1":{"name":"rc-calendar","version":"1.5.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"2b1be5e7e17f7b11ff83714a8e03093073cfa96a","_id":"rc-calendar@1.5.1","_shasum":"8b09c11333423d90c08b5885400661876cca871c","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8b09c11333423d90c08b5885400661876cca871c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.1.tgz"},"directories":{}},"1.5.2":{"name":"rc-calendar","version":"1.5.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"6d836b7dafe8f90a6e94d685dd6a8c347282398e","_id":"rc-calendar@1.5.2","_shasum":"83728e5bb904d95fc8019c127d9fe1536fd1c180","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"83728e5bb904d95fc8019c127d9fe1536fd1c180","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.2.tgz"},"directories":{}},"1.5.3":{"name":"rc-calendar","version":"1.5.3","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"394a8345c9120574984ca09847e9c6cd98dd2abf","_id":"rc-calendar@1.5.3","_shasum":"26cf57627593d5fe9da8da903a56024d090c3ea4","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"26cf57627593d5fe9da8da903a56024d090c3ea4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.3.tgz"},"directories":{}},"1.5.4":{"name":"rc-calendar","version":"1.5.4","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"5dc6a6866633605aab10f581af261c90fab1726c","_id":"rc-calendar@1.5.4","_shasum":"fa35a44fd621b9fa104ec9a528ae1080839fc70d","_from":".","_npmVersion":"2.1.18","_nodeVersion":"0.11.14","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fa35a44fd621b9fa104ec9a528ae1080839fc70d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.4.tgz"},"directories":{}},"1.5.5":{"name":"rc-calendar","version":"1.5.5","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0"},"spm":{"dependencies":{"react":"~0.12.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"4657b45f961d76fbc123b240e94902ef0ed7ace1","_id":"rc-calendar@1.5.5","_shasum":"09ee72714bcc1ab7b85ae759063b6368f838a1e6","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"09ee72714bcc1ab7b85ae759063b6368f838a1e6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.5.tgz"},"directories":{}},"1.5.6":{"name":"rc-calendar","version":"1.5.6","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","rc-util":"^1.0.0"},"spm":{"dependencies":{"react":"~0.12.1","rc-util":"^1.0.0","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"532650d640e21c7faf1226753a16b5300393e8e4","_id":"rc-calendar@1.5.6","_shasum":"bcc4f8c7375a79e174597532ddb6118a2252028c","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"bcc4f8c7375a79e174597532ddb6118a2252028c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.6.tgz"},"directories":{}},"1.5.7":{"name":"rc-calendar","version":"1.5.7","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","expect.js":"~0.3.1","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^1.5.0","rc-tools":"^1.1.0","react":"~0.12.1"},"precommit":["lint","less"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","rc-util":"^1.0.0"},"spm":{"dependencies":{"react":"~0.12.1","rc-util":"^1.0.0","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"c691d2b07008b904e28df3372a18ded74c5d747d","_id":"rc-calendar@1.5.7","_shasum":"d9bf496964bfed4397d02ea12e5bf859941970c8","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d9bf496964bfed4397d02ea12e5bf859941970c8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.7.tgz"},"directories":{}},"1.5.8":{"name":"rc-calendar","version":"1.5.8","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag && git push origin master:gh-pages","push":"git push origin master:master && git push origin master:gh-pages","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"~0.12.1","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less","example"],"browserify-shim":{"react":"global:React"},"browserify":{"transform":[["browserify-jsx"],["browserify-shim"]]},"dependencies":{"browserify-jsx":"^0.1.0","browserify-shim":"^3.8.0","dom-align":"~1.0.1","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","rc-util":"^1.0.0"},"spm":{"dependencies":{"react":"~0.12.1","rc-util":"^1.0.0","gregorian-calendar":"^2.0.0","gregorian-calendar-format":"^2.0.0","dom-align":"^1.0.1"},"buildArgs":"--global react:window.React","output":["lib/locale/*.js"]},"gitHead":"1528858d0b7807fe7373178c4e790f07164b7039","_id":"rc-calendar@1.5.8","_shasum":"faf1557788909aaa2ee225255aff73f6e2678575","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"faf1557788909aaa2ee225255aff73f6e2678575","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-1.5.8.tgz"},"directories":{}},"2.0.0":{"name":"rc-calendar","version":"2.0.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"~0.12.1","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^1.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^1.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"6c35423cf46d90fe939f5999a670fae32c3a3077","_id":"rc-calendar@2.0.0","_shasum":"987645dc58bb0d9c47fd4b2c848e84274e8990f5","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"987645dc58bb0d9c47fd4b2c848e84274e8990f5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-2.0.0.tgz"},"directories":{}},"2.0.1":{"name":"rc-calendar","version":"2.0.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"~0.12.1","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^1.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^1.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"864ba07c724d42f85a862aaaa594a24fd8ad4495","_id":"rc-calendar@2.0.1","_shasum":"4321336a249135c672ae18bca2636e72698daa97","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"4321336a249135c672ae18bca2636e72698daa97","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-2.0.1.tgz"},"directories":{}},"2.0.2":{"name":"rc-calendar","version":"2.0.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"~0.12.1","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^1.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^1.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"79d4ac0a632e56b02e98ba613bcdbd4513f5a930","_id":"rc-calendar@2.0.2","_shasum":"90d36b190c6bf57188d30059e7f31f0f3a71b8a8","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"90d36b190c6bf57188d30059e7f31f0f3a71b8a8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-2.0.2.tgz"},"directories":{}},"2.1.0":{"name":"rc-calendar","version":"2.1.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","modulex":"^1.7.4","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"~0.12.1","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^1.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^1.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"c12a27d130a693418434fa46b0bcf841bf49c298","_id":"rc-calendar@2.1.0","_shasum":"95ef80d2dfb110678457cbe8dac21a08348d83e1","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"95ef80d2dfb110678457cbe8dac21a08348d83e1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-2.1.0.tgz"},"directories":{}},"3.0.0":{"name":"rc-calendar","version":"3.0.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"example":"webpack -d && rc-tools run jsx2html","less":"rc-tools run less","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","css-loader":"^0.9.1","expect.js":"~0.3.1","file-loader":"^0.8.1","jsx-loader":"^0.12.2","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"^1.1.0","react":"^0.13.0","style-loader":"^0.8.3","url-loader":"^0.5.5","webpack":"~1.5.3"},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"56d100e34dc4f198fc6a2efb67011f1fe0438ebd","_id":"rc-calendar@3.0.0","_shasum":"9a02830bf6af3e0042557169e64413d3808eac4a","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9a02830bf6af3e0042557169e64413d3808eac4a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.0.0.tgz"},"directories":{}},"3.0.1":{"name":"rc-calendar","version":"3.0.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"61cd01bf6ed5cdf968c4725275014218a454648f","_id":"rc-calendar@3.0.1","_shasum":"e219592b20fe49065d56cd3a51993fbc96d65797","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e219592b20fe49065d56cd3a51993fbc96d65797","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.0.1.tgz"},"directories":{}},"3.1.0":{"name":"rc-calendar","version":"3.1.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"b361739b9eed5ba202d47dfea2a39bc6536a846c","_id":"rc-calendar@3.1.0","_shasum":"d45aa0d873696035e08383d3aefafed229647cf0","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d45aa0d873696035e08383d3aefafed229647cf0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.1.0.tgz"},"directories":{}},"3.1.1":{"name":"rc-calendar","version":"3.1.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"08bd7e185bef78939964b78b6c1bc6d25d81b838","_id":"rc-calendar@3.1.1","_shasum":"be0abdf26305dea2d3519da10bea2989aa4ee1af","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"be0abdf26305dea2d3519da10bea2989aa4ee1af","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.1.1.tgz"},"directories":{}},"3.1.2":{"name":"rc-calendar","version":"3.1.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"a9c8e06e0a4dba63da2efeed88fac91fb7a3228d","_id":"rc-calendar@3.1.2","_shasum":"320cc33f3d18885da1602f350f74b63f22af08bc","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"320cc33f3d18885da1602f350f74b63f22af08bc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.1.2.tgz"},"directories":{}},"3.2.0":{"name":"rc-calendar","version":"3.2.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"c4fbc0111f39fb30ef5780a2297b9f4162a6c500","_id":"rc-calendar@3.2.0","_shasum":"cd6a56ed581b8c8d3cbf4e32679f6db6a020e738","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"cd6a56ed581b8c8d3cbf4e32679f6db6a020e738","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.2.0.tgz"},"directories":{}},"3.3.0":{"name":"rc-calendar","version":"3.3.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-tools":"2.x","react":"^0.13.0"},"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"e68004da3fe10f67c738f57f572a041a40bf2ab8","_id":"rc-calendar@3.3.0","_shasum":"35562a945369bec8982d2ad5b86270c6ab23d20f","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"35562a945369bec8982d2ad5b86270c6ab23d20f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.3.0.tgz"},"directories":{}},"3.4.0":{"name":"rc-calendar","version":"3.4.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-style":"1.0.x","rc-tools":"2.x","react":"^0.13.0"},"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"c25693ca42266fa4b4fdd8061b01369ce19683f8","_id":"rc-calendar@3.4.0","_shasum":"3ee9a8b81f498608e2df5fb15fe684f10df1526b","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3ee9a8b81f498608e2df5fb15fe684f10df1526b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.4.0.tgz"},"directories":{}},"3.4.1":{"name":"rc-calendar","version":"3.4.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-style":"1.0.x","rc-tools":"2.x","react":"^0.13.0"},"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"c2d54251e1823ecfce2417ef427052afccbe922f","_id":"rc-calendar@3.4.1","_shasum":"76fb698581a6fc9f205b22e3eefaef67f71f91da","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"76fb698581a6fc9f205b22e3eefaef67f71f91da","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.4.1.tgz"},"directories":{}},"3.4.2":{"name":"rc-calendar","version":"3.4.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"^2.0.0","rc-style":"1.0.x","rc-tools":"2.x","react":"^0.13.0"},"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"precommit":["lint","less"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"57c3c72fcf70cb74f00a54ff159c48282329a4e9","_id":"rc-calendar@3.4.2","_shasum":"73949a774080c036c79f6fd8d51565f71061924a","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"73949a774080c036c79f6fd8d51565f71061924a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.4.2.tgz"},"directories":{}},"3.5.0":{"name":"rc-calendar","version":"3.5.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"spm":{"dependencies":{"react":"*","rc-util":"^2.0.0","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","dom-align":"^1.0.1"},"output":["lib/locale/*.js"]},"gitHead":"3e2609bd0fe7d91c83ab014c019a0f0ae83ad1d8","_id":"rc-calendar@3.5.0","_shasum":"ac673f1a4330093dd0e0aeadbd720b32a9e47011","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ac673f1a4330093dd0e0aeadbd720b32a9e47011","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.5.0.tgz"},"directories":{}},"3.5.1":{"name":"rc-calendar","version":"3.5.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"0a5fbdce1719396428ae26fdfeb8a93aeac42fb2","_id":"rc-calendar@3.5.1","_shasum":"eccc827507255c2c55568f145d77d6932a50a3a1","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"eccc827507255c2c55568f145d77d6932a50a3a1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.5.1.tgz"},"directories":{}},"3.5.2":{"name":"rc-calendar","version":"3.5.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"9f10fa87afe894d2de533ac36de6aaf58ffb5b3b","_id":"rc-calendar@3.5.2","_shasum":"f31e057f471cf0f6e961d7d9c380827887bd8271","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f31e057f471cf0f6e961d7d9c380827887bd8271","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.5.2.tgz"},"directories":{}},"3.5.3":{"name":"rc-calendar","version":"3.5.3","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"cedae67bd57619b8f1be84b01c6158b30af1bf56","_id":"rc-calendar@3.5.3","_shasum":"8bb025d2081a163fc8fa13e6bf4e5ec1c70876c9","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8bb025d2081a163fc8fa13e6bf4e5ec1c70876c9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.5.3.tgz"},"directories":{}},"3.6.0":{"name":"rc-calendar","version":"3.6.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"20c37fabfe43f54d2f900cd7da60ab9044e51343","_id":"rc-calendar@3.6.0","_shasum":"9856b9a243b9fe51a9202e2e24ce4f6b07d74b30","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9856b9a243b9fe51a9202e2e24ce4f6b07d74b30","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.6.0.tgz"},"directories":{}},"3.7.0":{"name":"rc-calendar","version":"3.7.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"f9782a1147789be0e0a445e5aba1da5a6bf12e0e","_id":"rc-calendar@3.7.0","_shasum":"225f7be52774186d7426e5402286af180387b772","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"225f7be52774186d7426e5402286af180387b772","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.7.0.tgz"},"directories":{}},"3.7.1":{"name":"rc-calendar","version":"3.7.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"724d5ae7829e2602494aaca84703b330d47db550","_id":"rc-calendar@3.7.1","_shasum":"2dc48d75e8e5249b7ab1cca1a72aa7c1d61a9da1","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2dc48d75e8e5249b7ab1cca1a72aa7c1d61a9da1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.7.1.tgz"},"directories":{}},"3.8.0":{"name":"rc-calendar","version":"3.8.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"7b649ea994b994ae14c597f89965a158b50e28e1","_id":"rc-calendar@3.8.0","_shasum":"c44249cf907c8ef208a4dbd4e461b6e9d0c88b98","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c44249cf907c8ef208a4dbd4e461b6e9d0c88b98","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.8.0.tgz"},"directories":{}},"3.8.1":{"name":"rc-calendar","version":"3.8.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"44adc591935d1cb6ad55daf090c3bba1c47bab58","_id":"rc-calendar@3.8.1","_shasum":"3486e8428b143dc1a244effba454facfae6865a9","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3486e8428b143dc1a244effba454facfae6865a9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.8.1.tgz"},"directories":{}},"3.8.2":{"name":"rc-calendar","version":"3.8.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"1e236d4ad59b2423c8ea0912dca52b3b3ad83d41","_id":"rc-calendar@3.8.2","_shasum":"b6f716df00dfdca9a6539d3d00236d1043efad6d","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b6f716df00dfdca9a6539d3d00236d1043efad6d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.8.2.tgz"},"directories":{}},"3.8.3":{"name":"rc-calendar","version":"3.8.3","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"052e23af4b0ac4f8990d4840338e13b31cbedc7a","_id":"rc-calendar@3.8.3","_shasum":"c124f047d7b663a762bf4e81105c089e8d4c297d","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c124f047d7b663a762bf4e81105c089e8d4c297d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.8.3.tgz"},"directories":{}},"3.8.4":{"name":"rc-calendar","version":"3.8.4","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"aef520d83018b359a843eb4b8359bfa913dec28c","_id":"rc-calendar@3.8.4","_shasum":"375171cded3a7d589e91f92c6d73196fe705f364","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"375171cded3a7d589e91f92c6d73196fe705f364","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.8.4.tgz"},"directories":{}},"3.9.0":{"name":"rc-calendar","version":"3.9.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"7346611aaacc2f61e7f14d77fe9f327905c302cf","_id":"rc-calendar@3.9.0","_shasum":"f01f275b05174448dde5f12f9547e2afbffffa52","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f01f275b05174448dde5f12f9547e2afbffffa52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.9.0.tgz"},"directories":{}},"3.9.1":{"name":"rc-calendar","version":"3.9.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-style":"1.0.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"2e721a17c4e9e632e4f8b1cd52f8c6077aa637ea","_id":"rc-calendar@3.9.1","_shasum":"8f064cf43b0cf24a2b1a76088194db6aedcfb264","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8f064cf43b0cf24a2b1a76088194db6aedcfb264","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.9.1.tgz"},"directories":{}},"3.10.0":{"name":"rc-calendar","version":"3.10.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.3","dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"67eef26705a65311831e718cfa039cf55c48ab76","_id":"rc-calendar@3.10.0","_shasum":"8a41ce2060ac12e57b5dfe92d121c6f4af1701d8","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8a41ce2060ac12e57b5dfe92d121c6f4af1701d8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.10.0.tgz"},"directories":{}},"3.10.1":{"name":"rc-calendar","version":"3.10.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.3","dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"f4205d9711665570d04448e912bcb60400ed36f9","_id":"rc-calendar@3.10.1","_shasum":"5236428b8abae994ac6040dcdd154cf6fcd0f56f","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5236428b8abae994ac6040dcdd154cf6fcd0f56f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.10.1.tgz"},"directories":{}},"3.11.0":{"name":"rc-calendar","version":"3.11.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"css-animation":"~1.0.3","dom-align":"^1.0.1","gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-util":"^2.0.0"},"gitHead":"7a08dc29a2c199c8143fd1a7618fce65a6b395aa","_id":"rc-calendar@3.11.0","_shasum":"93e82355cb72aa767bcd057785685bb08dc3968e","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"93e82355cb72aa767bcd057785685bb08dc3968e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.11.0.tgz"},"directories":{}},"3.12.0":{"name":"rc-calendar","version":"3.12.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node --harmony node_modules/.bin/rc-server","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"3.x","react":"^0.13.0"},"precommit":["precommit"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"b7fb9b31abe74fa8d935367588c6a6b44689098f","_id":"rc-calendar@3.12.0","_shasum":"4fe80246fcc6997c8c90c7aee8bdab85d041e093","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"4fe80246fcc6997c8c90c7aee8bdab85d041e093","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.12.0.tgz"},"directories":{}},"3.12.1":{"name":"rc-calendar","version":"3.12.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"98b45e2981c78c3764b87c9aec45e131168576df","_id":"rc-calendar@3.12.1","_shasum":"cdbfd0d5d201ceb6b575c98433796879bcb7e965","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"cdbfd0d5d201ceb6b575c98433796879bcb7e965","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.12.1.tgz"},"directories":{}},"3.12.2":{"name":"rc-calendar","version":"3.12.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"98b45e2981c78c3764b87c9aec45e131168576df","_id":"rc-calendar@3.12.2","_shasum":"b9fbee82575ab2b224c5eb31efda843ea6fba978","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b9fbee82575ab2b224c5eb31efda843ea6fba978","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.12.2.tgz"},"directories":{}},"3.12.3":{"name":"rc-calendar","version":"3.12.3","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"e356ab10a0f9c3f78facce613d355662103a1fe6","_id":"rc-calendar@3.12.3","_shasum":"bd013f18d41f1a7d2fef968e545caef893f835a2","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"bd013f18d41f1a7d2fef968e545caef893f835a2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.12.3.tgz"},"directories":{}},"3.12.4":{"name":"rc-calendar","version":"3.12.4","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"0751bb5cc482e3599faf86a60eff9e793b23d34f","_id":"rc-calendar@3.12.4","_shasum":"a7c72c39b6190410f1f10540d92eb5617b816e3a","_from":".","_npmVersion":"2.11.0","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a7c72c39b6190410f1f10540d92eb5617b816e3a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.12.4.tgz"},"directories":{}},"3.13.0":{"name":"rc-calendar","version":"3.13.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"acc9f7d5dcdbd800d8b3bd06ef23cacb207dcb75","_id":"rc-calendar@3.13.0","_shasum":"74dcb2c88e881970bd7a20842e7eceec5f2df6bd","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"74dcb2c88e881970bd7a20842e7eceec5f2df6bd","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.13.0.tgz"},"directories":{}},"3.14.0":{"name":"rc-calendar","version":"3.14.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"06c7e806cc37e64356b313c6d7ad52612cb036c7","_id":"rc-calendar@3.14.0","_shasum":"2e10e6d395f6e0843595979fc758d226942d3fb0","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2e10e6d395f6e0843595979fc758d226942d3fb0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.14.0.tgz"},"directories":{}},"3.14.1":{"name":"rc-calendar","version":"3.14.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"7f6a02ca6a09af283fdab820d15f52497de62d24","_id":"rc-calendar@3.14.1","_shasum":"9d6478e8e96a781a657aad41ee00bb4302d99cad","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9d6478e8e96a781a657aad41ee00bb4302d99cad","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.14.1.tgz"},"directories":{}},"3.14.2":{"name":"rc-calendar","version":"3.14.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"dd2430200d2087003732bc1182a977aa01ca8b36","_id":"rc-calendar@3.14.2","_shasum":"534fd4a561c97d46d6bb532450b4c687f188a490","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"534fd4a561c97d46d6bb532450b4c687f188a490","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.14.2.tgz"},"directories":{}},"3.15.0":{"name":"rc-calendar","version":"3.15.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"d5471e28fc7030c3abd11fe02add4adc3b6582df","_id":"rc-calendar@3.15.0","_shasum":"e46fb5c00e47d15869a3ee94b9cc14fda364071f","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e46fb5c00e47d15869a3ee94b9cc14fda364071f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.15.0.tgz"},"directories":{}},"3.16.0":{"name":"rc-calendar","version":"3.16.0","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"a45f543a008f68f3392b055f6bb1ef0f39bc628c","_id":"rc-calendar@3.16.0","_shasum":"7951d726e8561757ce6e08784c9ad5e3d17d6245","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7951d726e8561757ce6e08784c9ad5e3d17d6245","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.16.0.tgz"},"directories":{}},"3.16.1":{"name":"rc-calendar","version":"3.16.1","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"223f6c33ac8634638304fa9b2d915aa67a0afecb","_id":"rc-calendar@3.16.1","_shasum":"1dd8082d90482a8a32dabea00d12a8c6796c9380","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"1dd8082d90482a8a32dabea00d12a8c6796c9380","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.16.1.tgz"},"directories":{}},"3.16.2":{"name":"rc-calendar","version":"3.16.2","description":"calendar ui component for react","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x"},"gitHead":"2ab5bcd283ecd4c1e032be5aa9fb76149a083477","_id":"rc-calendar@3.16.2","_shasum":"abc5905c63659c6db34a1fb9c472bd1607fadf8d","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"abc5905c63659c6db34a1fb9c472bd1607fadf8d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-3.16.2.tgz"},"directories":{}},"4.0.0-alpha1":{"name":"rc-calendar","version":"4.0.0-alpha1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"^4.0.1","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x","warning":"~2.0.0"},"gitHead":"760deb5776b8d518b35789022e30ab2333b5e9d9","_id":"rc-calendar@4.0.0-alpha1","_shasum":"2ec8e40dfa8a20d01107bbcb95d3232d04b57485","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2ec8e40dfa8a20d01107bbcb95d3232d04b57485","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha1.tgz"},"directories":{}},"4.0.0-alpha2":{"name":"rc-calendar","version":"4.0.0-alpha2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony node_modules/.bin/rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"^4.0.1","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x","warning":"~2.0.0"},"gitHead":"47ba2c9111ad93edfb822a5b28ea0704087afb81","_id":"rc-calendar@4.0.0-alpha2","_shasum":"3478afbe3c0d398dcb46a34bf3f382dc589ad148","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3478afbe3c0d398dcb46a34bf3f382dc589ad148","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha2.tgz"},"directories":{}},"4.0.0-alpha3":{"name":"rc-calendar","version":"4.0.0-alpha3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"^4.0.1","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x","warning":"~2.0.0"},"gitHead":"a04663e81667702e7ca4b16e955902b1d6a90f74","_id":"rc-calendar@4.0.0-alpha3","_shasum":"ebc6577da731530006ef5061097bde83367a230e","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ebc6577da731530006ef5061097bde83367a230e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha3.tgz"},"directories":{}},"4.0.0-alpha4":{"name":"rc-calendar","version":"4.0.0-alpha4","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"^4.0.1","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x","warning":"~2.0.0"},"gitHead":"dfa5be486afcf56a59436617b26fe8f903f0e006","_id":"rc-calendar@4.0.0-alpha4","_shasum":"fac1aabbbad692d8475a4d8687bf3c7bbf26d2a6","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fac1aabbbad692d8475a4d8687bf3c7bbf26d2a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha4.tgz"},"directories":{}},"4.0.0-alpha5":{"name":"rc-calendar","version":"4.0.0-alpha5","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","precommit-hook":"^1.0.7","rc-server":"3.x","rc-tools":"4.x","react":"^0.13.0"},"precommit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"^4.0.1","rc-align":"1.x","rc-animate":"1.x","rc-util":"2.x","warning":"~2.0.0"},"gitHead":"8d78001f2236f63c1a9324311b19ec30e73355b8","_id":"rc-calendar@4.0.0-alpha5","_shasum":"0fe1dec2db805b9a48cca5ff8fd486ba75c76fad","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"0fe1dec2db805b9a48cca5ff8fd486ba75c76fad","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha5.tgz"},"directories":{}},"4.0.0-alpha6":{"name":"rc-calendar","version":"4.0.0-alpha6","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","precommit-hook-eslint":"3.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"4.x","rc-align":"2.x","rc-animate":"2.x","rc-util":"2.x","warning":"~2.0.0"},"gitHead":"84c7f3692bed2bd93b4118ca407e4e5eef32bfca","_id":"rc-calendar@4.0.0-alpha6","_shasum":"cf972f06f02ed5a440e2776f756328b02064c569","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"cf972f06f02ed5a440e2776f756328b02064c569","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha6.tgz"},"directories":{}},"4.0.0-alpha7":{"name":"rc-calendar","version":"4.0.0-alpha7","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"4.x","rc-trigger":"0.1.x","rc-util":"2.x","warning":"2.x"},"gitHead":"aa04a23671d31248c7a88d80959fb432cd95018b","_id":"rc-calendar@4.0.0-alpha7","_shasum":"9174e250fa0e762306691bda21e376a8be5a4f9f","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9174e250fa0e762306691bda21e376a8be5a4f9f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha7.tgz"},"directories":{}},"4.0.0-alpha8":{"name":"rc-calendar","version":"4.0.0-alpha8","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"4.x","rc-trigger":"0.1.x","rc-util":"2.x","warning":"2.x"},"gitHead":"a732517313306228904ec3578889d29968995e73","_id":"rc-calendar@4.0.0-alpha8","_shasum":"a54d36d853df4d1982dacd7b2f7042020365c4ec","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a54d36d853df4d1982dacd7b2f7042020365c4ec","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha8.tgz"},"directories":{}},"4.0.0-alpha9":{"name":"rc-calendar","version":"4.0.0-alpha9","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"3.x","gregorian-calendar-format":"3.x","object-assign":"4.x","rc-trigger":"0.1.x","rc-util":"2.x","warning":"2.x"},"gitHead":"c76ca48738cc80153550a6e474bc1526f7cd23bf","_id":"rc-calendar@4.0.0-alpha9","_shasum":"5692611fc158e31ba2cf96fc6e646350b47e959d","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5692611fc158e31ba2cf96fc6e646350b47e959d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha9.tgz"},"directories":{}},"4.0.0-alpha10":{"name":"rc-calendar","version":"4.0.0-alpha10","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"2.x"},"gitHead":"22c4991649582e1cdb38e03cbe4e620c6747fe71","_id":"rc-calendar@4.0.0-alpha10","_shasum":"aa84ff2029dfb1996d4ca0ea22c344a25c23ab65","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"aa84ff2029dfb1996d4ca0ea22c344a25c23ab65","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha10.tgz"},"directories":{}},"4.0.0-alpha11":{"name":"rc-calendar","version":"4.0.0-alpha11","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"2.x"},"gitHead":"4afd5a918eae8b00fbe1eb83e66a4380bf610b81","_id":"rc-calendar@4.0.0-alpha11","_shasum":"c2d04fec7692de5f8ec1da8de825ed7eae764b78","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c2d04fec7692de5f8ec1da8de825ed7eae764b78","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha11.tgz"},"directories":{}},"4.0.0-alpha12":{"name":"rc-calendar","version":"4.0.0-alpha12","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"2.x"},"gitHead":"14dcb8492c030b19ce4b540380cf7f5f091f6c4f","_id":"rc-calendar@4.0.0-alpha12","_shasum":"ad573832a843e1af7b6994e347eb42b8e5c46d39","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ad573832a843e1af7b6994e347eb42b8e5c46d39","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha12.tgz"},"directories":{}},"4.0.0-alpha13":{"name":"rc-calendar","version":"4.0.0-alpha13","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"2.x"},"gitHead":"5657a65e2cd3e533a08c78b4a45ae8e56117eaa0","_id":"rc-calendar@4.0.0-alpha13","_shasum":"5baf1ac84899353e5ad91178474f32fa98b0b035","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5baf1ac84899353e5ad91178474f32fa98b0b035","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha13.tgz"},"directories":{}},"4.0.0-alpha14":{"name":"rc-calendar","version":"4.0.0-alpha14","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"3.x","rc-select":"5.x"},"gitHead":"315f56b1fd2e1e8780b2558a811a40af07452661","_id":"rc-calendar@4.0.0-alpha14","_shasum":"90bdbbd8d2a67af2dd8d13e5e848cd9a15fd6118","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"90bdbbd8d2a67af2dd8d13e5e848cd9a15fd6118","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha14.tgz"},"directories":{}},"4.0.0-alpha15":{"name":"rc-calendar","version":"4.0.0-alpha15","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"3.x","rc-select":"5.x"},"gitHead":"43c87eac79ff31da0791ee49933b4f563f623fff","_id":"rc-calendar@4.0.0-alpha15","_shasum":"4c2b03462ff16483a316b79a568d9ebbe5fadb62","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"4c2b03462ff16483a316b79a568d9ebbe5fadb62","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha15.tgz"},"directories":{}},"4.0.0-alpha16":{"name":"rc-calendar","version":"4.0.0-alpha16","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"3.x","rc-select":"5.x"},"gitHead":"29678c31b38c433d32ee4c6d450203a9a6107c45","_id":"rc-calendar@4.0.0-alpha16","_shasum":"821e6ae95ffaffb67dddf4a8bbfb723afa310c62","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"821e6ae95ffaffb67dddf4a8bbfb723afa310c62","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha16.tgz"},"directories":{}},"4.0.0-alpha17":{"name":"rc-calendar","version":"4.0.0-alpha17","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"3.x","rc-select":"5.x"},"gitHead":"2ee13204b8dc07d48bc2aa1b5d207d389078bc2f","_id":"rc-calendar@4.0.0-alpha17","_shasum":"fbaf9c6404fd1e42957c3ba8540a9ad2761c33c4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fbaf9c6404fd1e42957c3ba8540a9ad2761c33c4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha17.tgz"},"directories":{}},"4.0.0-alpha18":{"name":"rc-calendar","version":"4.0.0-alpha18","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"3.x","rc-select":"5.x"},"gitHead":"46962af3b60c262ea3d72a6de67e1f185c863000","_id":"rc-calendar@4.0.0-alpha18","_shasum":"82779167a927cfaccc4b46e687118d9ee004d797","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"82779167a927cfaccc4b46e687118d9ee004d797","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha18.tgz"},"directories":{}},"4.0.0-alpha19":{"name":"rc-calendar","version":"4.0.0-alpha19","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover","validate":"npm ls"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"3.x","rc-select":"5.x"},"gitHead":"2e5463b0a89cb8d20bad68603b436e9c3478e710","_id":"rc-calendar@4.0.0-alpha19","_shasum":"ddd4b277e1bec35eb4fe32c39a6fc22497c11e6a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ddd4b277e1bec35eb4fe32c39a6fc22497c11e6a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha19.tgz"},"directories":{}},"4.0.0-alpha20":{"name":"rc-calendar","version":"4.0.0-alpha20","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"3.x","rc-select":"5.x"},"gitHead":"067171bca292918e7c7be86a58ac1aa7214388c1","_id":"rc-calendar@4.0.0-alpha20","_shasum":"94c629e0668eba51c07b11b0fd3eabe9a24f5b98","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"94c629e0668eba51c07b11b0fd3eabe9a24f5b98","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0-alpha20.tgz"},"directories":{}},"4.0.0":{"name":"rc-calendar","version":"4.0.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-trigger":"1.x","rc-util":"3.x","rc-select":"5.x"},"gitHead":"6b10aaf400dd5501a864b42687a517f2bee217c9","_id":"rc-calendar@4.0.0","_shasum":"80150840caad4d705c1fc2ce78398129095236cb","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"80150840caad4d705c1fc2ce78398129095236cb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.0.tgz"},"directories":{}},"4.0.1":{"name":"rc-calendar","version":"4.0.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","object-assign":"4.x","rc-select":"5.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"94474d02e1dc248bf923f5fc2b743b1811acbe6d","_id":"rc-calendar@4.0.1","_shasum":"b5663865145a959d3b851a812db1905837673658","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b5663865145a959d3b851a812db1905837673658","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-4.0.1.tgz"},"directories":{}},"5.0.0":{"name":"rc-calendar","version":"5.0.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"cbd1b8f0abd7f03c2abe48b135092abc073f6430","_id":"rc-calendar@5.0.0","_shasum":"8da944ea73adf31cebc5cbfac8a1844cfbc64ad5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8da944ea73adf31cebc5cbfac8a1844cfbc64ad5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.0.0.tgz"},"directories":{}},"5.0.1":{"name":"rc-calendar","version":"5.0.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"1dd8cb7f1344d38d8d363d0876b64ac70e7beb72","_id":"rc-calendar@5.0.1","_shasum":"325b6688fcf807400bc9354b140d64d04486c377","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"325b6688fcf807400bc9354b140d64d04486c377","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.0.1.tgz"},"directories":{}},"5.0.2":{"name":"rc-calendar","version":"5.0.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"a314b8fecffe2829ecd22fa4428e9a66588f9ccd","_id":"rc-calendar@5.0.2","_shasum":"d77dbe7e12f2458cf51500c2afce31934a6239b2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d77dbe7e12f2458cf51500c2afce31934a6239b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.0.2.tgz"},"directories":{}},"5.1.0":{"name":"rc-calendar","version":"5.1.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"7d098598c69371620c94cb0a75a44d83e0003c93","_id":"rc-calendar@5.1.0","_shasum":"9a2d6eb6764fe3355e10fbbedfab4b9557d995d7","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9a2d6eb6764fe3355e10fbbedfab4b9557d995d7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.1.0.tgz"},"directories":{}},"5.2.0":{"name":"rc-calendar","version":"5.2.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"fd0861b0f61f805129bdff55d81396bbe53a3e66","_id":"rc-calendar@5.2.0","_shasum":"fa6c79001fe929adad2707f702109fc05fd54379","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fa6c79001fe929adad2707f702109fc05fd54379","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.2.0.tgz"},"directories":{}},"5.2.1":{"name":"rc-calendar","version":"5.2.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^5.3.1","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"759f7ec7c56648d07ab39c490a2f8dce0e65c3e4","_id":"rc-calendar@5.2.1","_shasum":"669a5fe285b6b6360049956bda58c75583972117","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"669a5fe285b6b6360049956bda58c75583972117","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.2.1.tgz"},"directories":{}},"5.2.2":{"name":"rc-calendar","version":"5.2.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^5.3.1","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"15558811a291c31a52bf2d9a6c5777c447b51d5e","_id":"rc-calendar@5.2.2","_shasum":"7f7a27ce2ef676f9d77dc09df16cf4acd4aa35d5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7f7a27ce2ef676f9d77dc09df16cf4acd4aa35d5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.2.2.tgz"},"directories":{}},"5.3.0":{"name":"rc-calendar","version":"5.3.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^5.3.1","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"b35c50b28129f00433f8cef7bdf1df9cf39bc24a","_id":"rc-calendar@5.3.0","_shasum":"b6455ddd97dec9ec57e4674ef1e31b1604099bca","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b6455ddd97dec9ec57e4674ef1e31b1604099bca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.3.0.tgz"},"directories":{}},"5.3.1":{"name":"rc-calendar","version":"5.3.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^5.3.1","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"ed8a07ae7a646b871877ba55058012bc2ad8e502","_id":"rc-calendar@5.3.1","_shasum":"d5d93f2cb3cb299e4d79f7c235f02328a458cc9e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d5d93f2cb3cb299e4d79f7c235f02328a458cc9e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.3.1.tgz"},"directories":{}},"5.4.0":{"name":"rc-calendar","version":"5.4.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^5.3.1","rc-select":"5.x","rc-server":"3.x","rc-time-picker":"1.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"9c5c03caa5e81743d6092f3736d3d0111b66dab3","_id":"rc-calendar@5.4.0","_shasum":"4bcc71e787caf3f3bc372bff1d296275fb366e86","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"4bcc71e787caf3f3bc372bff1d296275fb366e86","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/rc-calendar-5.4.0.tgz_1455793718976_0.5419895551167428"},"directories":{}},"5.4.1":{"name":"rc-calendar","version":"5.4.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^5.3.1","rc-time-picker":"1.x","rc-tools":"5.x","react":"0.14.x","rc-select":"^5.9.3","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"5daee17e30c9ffa8f50b18c4c9b7d0f75c00efae","_id":"rc-calendar@5.4.1","_shasum":"55f19afad70431c95f8ad15f208aa81988f640a4","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"55f19afad70431c95f8ad15f208aa81988f640a4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.4.1.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rc-calendar-5.4.1.tgz_1455800169235_0.07911359309218824"},"directories":{}},"5.4.2":{"name":"rc-calendar","version":"5.4.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^5.3.1","rc-time-picker":"1.x","rc-tools":"5.x","react":"0.14.x","rc-select":"^5.9.3","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"708aef528b1a0c24b14b63e364eedce1137fdae6","_id":"rc-calendar@5.4.2","_shasum":"5bc3e2223d629650ecbf141157dc756c5b0e3ed3","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5bc3e2223d629650ecbf141157dc756c5b0e3ed3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.4.2.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/rc-calendar-5.4.2.tgz_1456109047676_0.6116093017626554"},"directories":{}},"5.5.0":{"name":"rc-calendar","version":"5.5.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^5.3.1","rc-time-picker":"1.x","rc-tools":"5.x","react":"0.14.x","rc-select":"^5.9.3","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"123dd230c9c6be5b9bb79a1f827812028496d5c1","_id":"rc-calendar@5.5.0","_shasum":"7d0774a9a544824ce7700b87d83ec6afae2c9306","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7d0774a9a544824ce7700b87d83ec6afae2c9306","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-5.5.0.tgz_1458648938024_0.007849451387301087"},"directories":{}},"5.5.1":{"name":"rc-calendar","version":"5.5.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"^15.0.1","react-addons-test-utils":"^15.0.1","react-dom":"^15.0.1"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"2e00ccd9638952f7e8d946ccad8eaf7ac5cf3241","_id":"rc-calendar@5.5.1","_shasum":"ee03268214afe2487e4728e8f6159fd39ee2ae3a","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ee03268214afe2487e4728e8f6159fd39ee2ae3a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.5.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-5.5.1.tgz_1460143373298_0.21968629257753491"},"directories":{}},"5.5.3":{"name":"rc-calendar","version":"5.5.3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"^15.0.1","react-addons-test-utils":"^15.0.1","react-dom":"^15.0.1"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"249c751fe35c0faac4a4fb13065b785a4eb4bec7","_id":"rc-calendar@5.5.3","_shasum":"fabef8bc7b13b54a1c245dd34c66cb264ea5d1f1","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fabef8bc7b13b54a1c245dd34c66cb264ea5d1f1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.5.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-5.5.3.tgz_1463541773937_0.8244870728813112"},"directories":{}},"5.5.4":{"name":"rc-calendar","version":"5.5.4","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"^15.0.1","react-addons-test-utils":"^15.0.1","react-dom":"^15.0.1"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"19c18a92fe43034e1f021e18e6bc1db22b333282","_id":"rc-calendar@5.5.4","_shasum":"33d099be2563de72ae78b08d1a3cb01cc15ac8e9","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"33d099be2563de72ae78b08d1a3cb01cc15ac8e9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.5.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-5.5.4.tgz_1464234130533_0.9872774935793132"},"directories":{}},"5.5.5":{"name":"rc-calendar","version":"5.5.5","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"^15.0.1","react-addons-test-utils":"^15.0.1","react-dom":"^15.0.1"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"abaed6aa0c8a808754fe153bd3f0098d8c785b1b","_id":"rc-calendar@5.5.5","_shasum":"ae5add15a51ceca14e085ec197bf4c712a9338ef","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ae5add15a51ceca14e085ec197bf4c712a9338ef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.5.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-5.5.5.tgz_1465897893271_0.26228740019723773"},"directories":{}},"5.5.6":{"name":"rc-calendar","version":"5.5.6","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"c2b15190fbbbe15a2a7137cace113aace2219989","_id":"rc-calendar@5.5.6","_shasum":"3b57d8a88223deff9fa7d697a618f0ab0416e521","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3b57d8a88223deff9fa7d697a618f0ab0416e521","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.5.6.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-5.5.6.tgz_1466079266257_0.7610632167197764"},"directories":{}},"5.5.7":{"name":"rc-calendar","version":"5.5.7","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"849dcb543e1cbeb048f8ba540ccbc26e41fb3d10","_id":"rc-calendar@5.5.7","_shasum":"cf14f9b3c425db29a634305e560c46623e9283df","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"cf14f9b3c425db29a634305e560c46623e9283df","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.5.7.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-5.5.7.tgz_1466408006180_0.36180898593738675"},"directories":{}},"5.6.0":{"name":"rc-calendar","version":"5.6.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"08a583f2bd972620a23545ebd2891d366a0ce114","_id":"rc-calendar@5.6.0","_shasum":"9c90ac6349e7bb521f54a4392d994ac84fe0e0b8","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9c90ac6349e7bb521f54a4392d994ac84fe0e0b8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.6.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-5.6.0.tgz_1466413212046_0.8079725042916834"},"directories":{}},"5.6.1":{"name":"rc-calendar","version":"5.6.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"20f2e1a27de5ea5e78c1256867b31dba7e366d7c","_id":"rc-calendar@5.6.1","_shasum":"898ecd24133ce2204d81e4b48849c9312d14e491","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"898ecd24133ce2204d81e4b48849c9312d14e491","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.6.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-5.6.1.tgz_1466498015984_0.55151411681436"},"directories":{}},"5.5.8":{"name":"rc-calendar","version":"5.5.8","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"43d11e17be37af212c74d5f31a3eb85ee469f4f1","_id":"rc-calendar@5.5.8","_shasum":"060948736466ddde48708623e53c005f712945cc","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"060948736466ddde48708623e53c005f712945cc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.5.8.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-5.5.8.tgz_1466498343072_0.9018936741631478"},"directories":{}},"5.6.2":{"name":"rc-calendar","version":"5.6.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8001},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"b67acaafc370076998d4e96651bb842d1edfa7e3","_id":"rc-calendar@5.6.2","_shasum":"e5d6421a4bbcf6ef48efae24a2224d389709615b","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"e5d6421a4bbcf6ef48efae24a2224d389709615b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-5.6.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-5.6.2.tgz_1466500025228_0.08066582586616278"},"directories":{}},"6.0.0":{"name":"rc-calendar","version":"6.0.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"db92ee4c9935b6cf6660700b57e9d03fa094039b","_id":"rc-calendar@6.0.0","_shasum":"8fbd12368351d7c5664583158903ef3951d2ea7b","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8fbd12368351d7c5664583158903ef3951d2ea7b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-6.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-6.0.0.tgz_1468417823943_0.1812075972557068"},"directories":{}},"6.0.1":{"name":"rc-calendar","version":"6.0.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"073a4f682aecf9d45db4bd2e965dc3787daff4ab","_id":"rc-calendar@6.0.1","_shasum":"792fb3cbffc520fbf92eeb0524e283ca3249873f","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"792fb3cbffc520fbf92eeb0524e283ca3249873f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-6.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-6.0.1.tgz_1468419482796_0.4899274418130517"},"directories":{}},"6.0.2":{"name":"rc-calendar","version":"6.0.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"^1.1.4","rc-tools":"^5.3.4","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"classnames":"2.x","gregorian-calendar":"4.x","gregorian-calendar-format":"4.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"9f85e0e395530132ae429b0fce7b85c8131c68a5","_id":"rc-calendar@6.0.2","_shasum":"eea1c0503a2cdec29811108a2ed1665cd99acc3e","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"eea1c0503a2cdec29811108a2ed1665cd99acc3e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-6.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-6.0.2.tgz_1468814513273_0.4225881793536246"},"directories":{}},"7.0.0":{"name":"rc-calendar","version":"7.0.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"16302cb042407822a3af7cb5cae11e3f1c859b84","_id":"rc-calendar@7.0.0","_shasum":"0b2d896215272ff57a1ac4371f53e032d031604a","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"0b2d896215272ff57a1ac4371f53e032d031604a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.0.0.tgz_1470417706757_0.9816479757428169"},"directories":{}},"7.0.2":{"name":"rc-calendar","version":"7.0.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"21d6ecbd2b6090bf382a4de3e95c11bcd4d3ad67","_id":"rc-calendar@7.0.2","_shasum":"cd7f46e194d31065f63373c60c7cbecba058849d","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"cd7f46e194d31065f63373c60c7cbecba058849d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.0.2.tgz_1470904886423_0.98265934525989"},"directories":{}},"7.0.3":{"name":"rc-calendar","version":"7.0.3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"ffb9d2a26f2c47d8de18c26c7f8631451a87d0c6","_id":"rc-calendar@7.0.3","_shasum":"3405ae64bfac0548a918ec069c22f0785429720b","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3405ae64bfac0548a918ec069c22f0785429720b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.0.3.tgz_1472241463231_0.23526579467579722"},"directories":{}},"7.0.4":{"name":"rc-calendar","version":"7.0.4","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"c19f214370a83f035190009c9232e005ea1c31ad","_id":"rc-calendar@7.0.4","_shasum":"78ab930bbef56d385ef7287f68d162ff86a465b4","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"78ab930bbef56d385ef7287f68d162ff86a465b4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.0.4.tgz_1472827557216_0.7221437310799956"},"directories":{}},"7.1.0":{"name":"rc-calendar","version":"7.1.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"cc13076b2fa99acf15eed8491733a0f3fcd31d71","_id":"rc-calendar@7.1.0","_shasum":"a090d33ac98508a612dd3b834716574480b1239b","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a090d33ac98508a612dd3b834716574480b1239b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.1.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.1.0.tgz_1473517550733_0.8295359851326793"},"directories":{}},"7.2.0":{"name":"rc-calendar","version":"7.2.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"b6f2e1c710dc469173e331b081886244073611a1","_id":"rc-calendar@7.2.0","_shasum":"2b902943f46f428825d19a761cd2da5fff2fb7e0","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2b902943f46f428825d19a761cd2da5fff2fb7e0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.2.0.tgz_1474651579188_0.8778223232366145"},"directories":{}},"7.2.1":{"name":"rc-calendar","version":"7.2.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"545bbddaac52a3969b1419cc2e9f307781bbc0ee","_id":"rc-calendar@7.2.1","_shasum":"a3df01eb68b7aa48d6c1ca779d454c2c68d4af53","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a3df01eb68b7aa48d6c1ca779d454c2c68d4af53","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.2.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.2.1.tgz_1476354999800_0.4706757594831288"},"directories":{}},"7.3.0":{"name":"rc-calendar","version":"7.3.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"24920569ab84f17a73f9357a336707d8a8b49e09","_id":"rc-calendar@7.3.0","_shasum":"ef466e928c6943f6a63f70b555b328da716ffeb9","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ef466e928c6943f6a63f70b555b328da716ffeb9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.3.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.3.0.tgz_1476767931787_0.5238024764694273"},"directories":{}},"7.3.1":{"name":"rc-calendar","version":"7.3.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"94221aa84e3723e032933e314bcb112c243af2e8","_id":"rc-calendar@7.3.1","_shasum":"f0a0b8f9533a6087fb75261cdc63856b0759a7a0","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f0a0b8f9533a6087fb75261cdc63856b0759a7a0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.3.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.3.1.tgz_1476852144144_0.18292712443508208"},"directories":{}},"7.4.0":{"name":"rc-calendar","version":"7.4.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"b36478a730fff38f55ac6f2a3195daa324ccd8d3","_id":"rc-calendar@7.4.0","_shasum":"7979d0474a738455efa626796620c6ee0cd61d83","_from":".","_npmVersion":"4.0.1","_nodeVersion":"4.6.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7979d0474a738455efa626796620c6ee0cd61d83","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.4.0.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.4.0.tgz_1477970317682_0.9840258217882365"},"directories":{}},"7.4.1":{"name":"rc-calendar","version":"7.4.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"d8a034386659070f402ec3a3c21b974c88eed1c4","_id":"rc-calendar@7.4.1","_shasum":"6609e41e392bb94eb6f51ca553b14ac064fcc7bc","_from":".","_npmVersion":"4.0.1","_nodeVersion":"4.6.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"6609e41e392bb94eb6f51ca553b14ac064fcc7bc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.4.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.4.1.tgz_1478279120891_0.7023100953083485"},"directories":{}},"7.4.2":{"name":"rc-calendar","version":"7.4.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"df2c74faa8a5f23ba19fbc7c8285a348be40eec3","_id":"rc-calendar@7.4.2","_shasum":"a8b5bd8c7472d8a3269fd7069a3e9288d30e5b3e","_from":".","_npmVersion":"4.0.1","_nodeVersion":"4.6.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a8b5bd8c7472d8a3269fd7069a3e9288d30e5b3e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.4.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.4.2.tgz_1478495798685_0.6548429222311825"},"directories":{}},"7.4.3":{"name":"rc-calendar","version":"7.4.3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"0a284001e0a1ac806aeeca6fb913d9f276262179","_id":"rc-calendar@7.4.3","_shasum":"732e5f43041ec5ad83f3ecfa1bd644efcdc1316a","_from":".","_npmVersion":"4.0.1","_nodeVersion":"4.6.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"732e5f43041ec5ad83f3ecfa1bd644efcdc1316a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.4.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.4.3.tgz_1478511108000_0.4267644069623202"},"directories":{}},"7.4.4":{"name":"rc-calendar","version":"7.4.4","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"e8246dcad4afc5cb8db8c7dfd4e5cf69bf784470","_id":"rc-calendar@7.4.4","_shasum":"4104da97529684d93261666cebcfff31cf456fd0","_from":".","_npmVersion":"4.0.1","_nodeVersion":"4.6.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"4104da97529684d93261666cebcfff31cf456fd0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.4.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.4.4.tgz_1479094070646_0.8480334091000259"},"directories":{}},"7.5.0":{"name":"rc-calendar","version":"7.5.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"f9756beb8d998ecf1b3f3f55c2625ebb477e29bb","_id":"rc-calendar@7.5.0","_shasum":"480e75001d415fe832452589dd14c59f137df9ef","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"480e75001d415fe832452589dd14c59f137df9ef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.5.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.5.0.tgz_1479268005066_0.7989687316585332"},"directories":{}},"7.5.1":{"name":"rc-calendar","version":"7.5.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"e8e7709c702210315984fe251ee1c601b16f4bd5","_id":"rc-calendar@7.5.1","_shasum":"b110cb7c74a1e7b45ae6d4451cf4c7236e347f44","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b110cb7c74a1e7b45ae6d4451cf4c7236e347f44","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.5.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.5.1.tgz_1479268335284_0.7553909914568067"},"directories":{}},"7.5.2":{"name":"rc-calendar","version":"7.5.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"23e2c965f23739b60265c1b77d354d60c03cdfbe","_id":"rc-calendar@7.5.2","_shasum":"95d2228c1e1cc5541a39175d6d717d76f9c3c72a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"95d2228c1e1cc5541a39175d6d717d76f9c3c72a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.5.2.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.5.2.tgz_1481912200174_0.6239069667644799"},"directories":{}},"7.5.3":{"name":"rc-calendar","version":"7.5.3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"bb94d60fc4c67b0217350c2a47f8494e7f19190e","_id":"rc-calendar@7.5.3","_shasum":"9b52789ac6d752f2ffd9c9d4c472334212390746","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"9b52789ac6d752f2ffd9c9d4c472334212390746","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.5.3.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.5.3.tgz_1483433143563_0.7007917508017272"},"directories":{}},"7.6.0":{"name":"rc-calendar","version":"7.6.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","expect.js":"~0.3.1","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"6029b58a4335b6d8fe915062d1c64ceaa7989626","_id":"rc-calendar@7.6.0","_shasum":"0ff5a3a43ea798deb36d9be26da5fdbbd661dc32","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"0ff5a3a43ea798deb36d9be26da5fdbbd661dc32","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.6.0.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.6.0.tgz_1484109431601_0.3697398479562253"},"directories":{}},"7.6.1":{"name":"rc-calendar","version":"7.6.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"e7d8604a921cc01d6911c62b33b2852add6aba20","_id":"rc-calendar@7.6.1","_shasum":"a446f0114608e4f2389eb552d92945d13bcf3c5a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"a446f0114608e4f2389eb552d92945d13bcf3c5a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.6.1.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.6.1.tgz_1484887204402_0.029959028121083975"},"directories":{}},"7.6.2":{"name":"rc-calendar","version":"7.6.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"8ab5911b79d46d1a46bef417e959519c24e2c368","_id":"rc-calendar@7.6.2","_shasum":"5490106a82f021aca1f4a38ac064258f61cc4ef9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"5490106a82f021aca1f4a38ac064258f61cc4ef9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.6.2.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.6.2.tgz_1486438153054_0.6875604733359069"},"directories":{}},"7.6.3":{"name":"rc-calendar","version":"7.6.3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"e5cd6ada113c033454f25a7bb6a7b95bea729b99","_id":"rc-calendar@7.6.3","_shasum":"09d1d711299a3369823dde7b22fb1c3db2eb4580","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"09d1d711299a3369823dde7b22fb1c3db2eb4580","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.6.3.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.6.3.tgz_1487128384608_0.342546462547034"},"directories":{}},"7.6.4":{"name":"rc-calendar","version":"7.6.4","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"890a45d7b0bf7c8459d338ae56ffc1fdb69fc1ca","_id":"rc-calendar@7.6.4","_shasum":"8a221d4a25151a02f1b3e95b7f444ca7917c3c90","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"8a221d4a25151a02f1b3e95b7f444ca7917c3c90","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.6.4.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.6.4.tgz_1487154562320_0.38493919163011014"},"directories":{}},"7.6.5":{"name":"rc-calendar","version":"7.6.5","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css"],"main":"lib/index","homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"b5e45c370c83976e1f258c49fe23b509081194af","_id":"rc-calendar@7.6.5","_shasum":"d3384ed24a0139a61e7e0b25b3a3a64b4bdaabef","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"d3384ed24a0139a61e7e0b25b3a3a64b4bdaabef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.6.5.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.6.5.tgz_1487246871157_0.6830114903859794"},"directories":{}},"7.6.6":{"name":"rc-calendar","version":"7.6.6","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./src/index.js","./assets/index.less"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"644fed00b23e5dbe9abf6f0f5a55d68f5f5f595a","_id":"rc-calendar@7.6.6","_shasum":"972b740093279af11f5b535179b74bdf7a2bcf2a","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"972b740093279af11f5b535179b74bdf7a2bcf2a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.6.6.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.6.6.tgz_1488335658582_0.4226853467989713"},"directories":{}},"7.6.7":{"name":"rc-calendar","version":"7.6.7","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"2d8bb2871b2d2844bdf270af0c77932741be2540","_id":"rc-calendar@7.6.7","_shasum":"3d133755e540fed1cffa5f2047d54ff803e15ec0","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"3d133755e540fed1cffa5f2047d54ff803e15ec0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.6.7.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.6.7.tgz_1488336345761_0.23964599939063191"},"directories":{}},"7.7.0":{"name":"rc-calendar","version":"7.7.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"2f50c39e81dc0a19ce862844d4a093dc3f451e9e","_id":"rc-calendar@7.7.0","_shasum":"d81cb72ce8edf432f7c330d7f1c06e5ea2ae805a","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d81cb72ce8edf432f7c330d7f1c06e5ea2ae805a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.7.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.7.0.tgz_1489558814237_0.5874669828917831"},"directories":{}},"7.7.1":{"name":"rc-calendar","version":"7.7.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"de0b07a7bcc22a87f84d101bcee3e6f6357fec5c","_id":"rc-calendar@7.7.1","_shasum":"6def116c6682389a8b39dec10a83282aaf9efadb","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"6def116c6682389a8b39dec10a83282aaf9efadb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.7.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-7.7.1.tgz_1490000025701_0.817411269294098"},"directories":{}},"7.8.0":{"name":"rc-calendar","version":"7.8.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"f8fb4e88e819ec49b7106fb73b9d55929ef3c5a4","_id":"rc-calendar@7.8.0","_shasum":"11e1e4fccfb318fd51dd97ba4d278c78022fe1fb","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"11e1e4fccfb318fd51dd97ba4d278c78022fe1fb","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-7.8.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-7.8.0.tgz_1491027562876_0.7240984938107431"},"directories":{}},"8.0.0":{"name":"rc-calendar","version":"8.0.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","jest":"^18.1.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"a05a381f17346ae092cb6a3ae878906bec9fb463","_id":"rc-calendar@8.0.0","_shasum":"d75ae0d0bc2544b10f76b2c1415d5ea713099134","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d75ae0d0bc2544b10f76b2c1415d5ea713099134","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.0.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-8.0.0.tgz_1491554207848_0.8146935852710158"},"directories":{}},"8.0.1":{"name":"rc-calendar","version":"8.0.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"0b2c9c7853df13b237719953814b18c2cc5d10a0","_id":"rc-calendar@8.0.1","_shasum":"923f3b2a5336fdcc7b5e3ccbfb7b3bb8be42c835","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"923f3b2a5336fdcc7b5e3ccbfb7b3bb8be42c835","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.0.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-8.0.1.tgz_1491808558077_0.0616597153712064"},"directories":{}},"8.1.0":{"name":"rc-calendar","version":"8.1.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","moment":"2.x","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"d11a602066cece45185fa4a0776f5b62557d757c","_id":"rc-calendar@8.1.0","_shasum":"26e8f92c91c7fc7251cb44f764b65a62e05e765a","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"26e8f92c91c7fc7251cb44f764b65a62e05e765a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.1.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-8.1.0.tgz_1491814794801_0.4615251317154616"},"directories":{}},"8.1.1":{"name":"rc-calendar","version":"8.1.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"a61b5f6acc97a22e3f057059052558d2fe7f69dc","_id":"rc-calendar@8.1.1","_shasum":"301a8bb81ebb5f83c33d9aded66f5729771cdb87","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"301a8bb81ebb5f83c33d9aded66f5729771cdb87","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.1.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-8.1.1.tgz_1492741959022_0.6709279958158731"},"directories":{}},"8.1.2":{"name":"rc-calendar","version":"8.1.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","expect.js":"~0.3.1","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","react-test-renderer":"^15.5.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"b519f881268fb564487612788e022f3540ca589d","_id":"rc-calendar@8.1.2","_shasum":"bd08cd0945fa7226f0a2e091f91622c1472a04d4","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"bd08cd0945fa7226f0a2e091f91622c1472a04d4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.1.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-8.1.2.tgz_1493023058583_0.4734341762959957"},"directories":{}},"8.1.3":{"name":"rc-calendar","version":"8.1.3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","babel-preset-es2015-ie":"^6.7.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"4da9162e8cd902bdc729f80d581393b8e0dbbc21","_id":"rc-calendar@8.1.3","_shasum":"45aadd0942d319378d1d08af3273b399eef7209b","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"45aadd0942d319378d1d08af3273b399eef7209b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.1.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-8.1.3.tgz_1493869642379_0.3682482794392854"},"directories":{}},"8.2.0":{"name":"rc-calendar","version":"8.2.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","babel-preset-es2015-ie":"^6.7.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"b21bd119c10e5ed5041340aba981481a073a6bcf","_id":"rc-calendar@8.2.0","_shasum":"1c8a4f9f288ed679a984def2350a1dfcb8542382","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"1c8a4f9f288ed679a984def2350a1dfcb8542382","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.2.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-calendar-8.2.0.tgz_1494916220871_0.7709728211630136"},"directories":{}},"8.3.0":{"name":"rc-calendar","version":"8.3.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","babel-preset-es2015-ie":"^6.7.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"c69b9a7ebe72a56361f481ace62a8d0370e4ff24","_id":"rc-calendar@8.3.0","_shasum":"08c627d4630b4c096b791e886ff38244fbf814aa","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"08c627d4630b4c096b791e886ff38244fbf814aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.3.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-calendar-8.3.0.tgz_1495089904772_0.4559234145563096"},"directories":{}},"8.3.1":{"name":"rc-calendar","version":"8.3.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","babel-preset-es2015-ie":"^6.7.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"5282eb1ecf29c7ecf8a70898031e31df2aac69c8","_id":"rc-calendar@8.3.1","_shasum":"d5b265c8bab27c99cdbf54a4e2bbeed0fb22d103","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d5b265c8bab27c99cdbf54a4e2bbeed0fb22d103","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.3.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.3.1.tgz_1495419904960_0.026569932466372848"},"directories":{}},"8.3.2":{"name":"rc-calendar","version":"8.3.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","assets/*.css","dist"],"main":"lib/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","babel-preset-es2015-ie":"^6.7.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"3.x"},"gitHead":"afe867081be25b21176ab607f607eadcf0797398","_id":"rc-calendar@8.3.2","_shasum":"d5ba89548a8361e93fe4bc49d30386b43691d9af","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d5ba89548a8361e93fe4bc49d30386b43691d9af","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.3.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.3.2.tgz_1495761988343_0.767587180249393"},"directories":{}},"8.3.3":{"name":"rc-calendar","version":"8.3.3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"]},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"4.x"},"gitHead":"abbc8d746047ee0d450fbfa07008af53c4461675","_id":"rc-calendar@8.3.3","_shasum":"16eee13438eeba16a6e0a387c806d8a571f0d483","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"16eee13438eeba16a6e0a387c806d8a571f0d483","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.3.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.3.3.tgz_1495766638711_0.0030737558845430613"},"directories":{}},"8.4.0":{"name":"rc-calendar","version":"8.4.0","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"],"transform":{"\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"4.x"},"gitHead":"c7859ac8a5484b0ef6a2e6637c1f8a0eeb57eaf4","_id":"rc-calendar@8.4.0","_shasum":"8518832155c5c1bcb91292904fa760db99369d52","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"8518832155c5c1bcb91292904fa760db99369d52","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.4.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.4.0.tgz_1496195996231_0.7855289031285793"},"directories":{}},"8.4.1":{"name":"rc-calendar","version":"8.4.1","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"],"transform":{"\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"4.x"},"gitHead":"36a88e074dec17b77bc0a28714b70b2036671cac","_id":"rc-calendar@8.4.1","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-ZoyZjZDPaXNDFVDVV3iY/uFMevOFmKVIyCZXkO4BoHt+vCfM0Li/D2wG4RksGaq+LvfWNL7wJNrVjFotS6iMXA==","shasum":"06d37586037606c0d726d12cbc7a3bff19e2cbe1","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.4.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.4.1.tgz_1496825129394_0.017366013955324888"},"directories":{}},"8.4.2":{"name":"rc-calendar","version":"8.4.2","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"],"transform":{"\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"4.x"},"gitHead":"74cd6baf8acf017a284f0d5b8e1c2415b8b5e07f","_id":"rc-calendar@8.4.2","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-cpEPspQP8avMo8/bgaj7YoXNHA5wNOBJW7xR2zMs/XXhYQ7aTYaj5q4xBhYdELvBkVYg5ji1M7KAicd14pQlFw==","shasum":"08f82ac968b90f9a60f31899d1a4abd402330bab","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.4.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.4.2.tgz_1497002481397_0.012191337533295155"},"directories":{}},"8.4.3":{"name":"rc-calendar","version":"8.4.3","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"],"transform":{"\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"4.x"},"gitHead":"8c63907d9fbbe39bf7e1bc148b502d105f3fb014","_id":"rc-calendar@8.4.3","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-bpURIPPNweG0GyR+P37wGLyyuDR0hIXZXFyeOLp6afgSVUKHUtbeezxBauXWZNMmpT65kUYjPIKtYMkJ9ujmHg==","shasum":"5f89767c3e9e839578fbe9cf3c54004ee96e8d53","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.4.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.4.3.tgz_1497326224540_0.5214683890808374"},"directories":{}},"8.4.4":{"name":"rc-calendar","version":"8.4.4","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"],"transform":{"\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"4.x"},"gitHead":"da97c54fe0529bcef7310088a861734541686b89","_id":"rc-calendar@8.4.4","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-5B52oObrbHkR5uBy6+YSimlvNCUa6VXfowm6QdUOul58JOGB+HGxOKDy8uY81/t/w1utHZ3L+TpcUtJAP6tNeQ==","shasum":"544386bdb80e1a6479d48aff385ca11a2d8084fc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.4.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.4.4.tgz_1497429557238_0.4160810997709632"},"directories":{}},"8.4.5":{"name":"rc-calendar","version":"8.4.5","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"],"transform":{"\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"^4.0.4"},"gitHead":"62cdaa5a2fbc0713cdedde17f8e88796cb612067","_id":"rc-calendar@8.4.5","_npmVersion":"5.0.3","_nodeVersion":"8.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-GZh0ALUZCpW2lDZCgItp9rzZcamsLB9dgzlwMH5h8E1ehZc09zd5VPEff9T1jATNP2aK7/+hE5kyhWQX3ur+Jw==","shasum":"8993b56070538c409284dcb271d566a018858a64","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.4.5.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.4.5.tgz_1497921922758_0.8029710804112256"},"directories":{}},"8.4.6":{"name":"rc-calendar","version":"8.4.6","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"],"transform":{"\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"^4.0.4"},"gitHead":"f9a4d40775c85ca325bc61a967b459832d885161","_id":"rc-calendar@8.4.6","_npmVersion":"5.0.3","_nodeVersion":"8.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-+vC/pTIw6iRnefafnwM9FV6cXoqf4xhF+2a9QazjfT0ijV6V5NstwVYLZntBlX5hs0xwwGMhWQrjhZMJfBDHoA==","shasum":"55dc45fcc8f91bf6f5bb5632c48b3a48e456f4e5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.4.6.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.4.6.tgz_1498635362322_0.8691086263861507"},"directories":{}},"8.4.7":{"name":"rc-calendar","version":"8.4.7","description":"React Calendar","keywords":["react","react-calendar","react-component","calendar","ui component","ui","component"],"files":["lib","es","assets/*.css","dist"],"main":"lib/index","module":"es/index","entry":{"rc-calendar":["./assets/index.less","./src/index.js"]},"homepage":"http://github.com/react-component/calendar","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/calendar.git"},"bugs":{"url":"http://github.com/react-component/calendar/issues"},"licenses":"MIT","config":{"port":8002},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"setupFiles":["./tests/setup.js"],"transform":{"\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"async":"~0.9.0","bootstrap":"~3.3.2","coveralls":"^2.11.15","enzyme":"^2.8.0","enzyme-to-json":"^1.5.0","jest":"^19.0.0","jquery":"~1.11.3","mockdate":"^2.0.1","object-assign":"4.x","pre-commit":"1.x","rc-dialog":"^6.0.1","rc-select":"^6.0.6","rc-time-picker":"2.x","rc-tools":"^6.2.2","react":"15.x","react-dom":"15.x","react-test-renderer":"15.x"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"2.x","create-react-class":"^15.5.2","moment":"2.x","prop-types":"^15.5.8","rc-trigger":"1.x","rc-util":"^4.0.4"},"gitHead":"c3780a0d9d5f611227e9e88a3103356310382ec3","_id":"rc-calendar@8.4.7","_npmVersion":"5.0.3","_nodeVersion":"8.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-tyqkroP0WWVqLKAVl3KNll2+nGCLHwa90CV+6dVbaYSmCH4qa56KbKrY/xrSCkX2y3wu4hNSV88Is6zrfllbSQ==","shasum":"f9cdbcdad4cfb901f52866000f31b41ddb4779ed","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-calendar/-/rc-calendar-8.4.7.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-calendar-8.4.7.tgz_1500862897761_0.036829321179538965"},"directories":{}}},"name":"rc-calendar","time":{"modified":"2017-07-24T02:21:37.884Z","created":"2014-12-10T12:28:01.334Z","1.0.0":"2014-12-10T12:28:01.334Z","1.1.0":"2014-12-11T08:16:41.303Z","1.2.0":"2014-12-11T13:24:45.669Z","1.2.1":"2014-12-11T13:31:13.707Z","1.2.2":"2014-12-11T17:16:39.019Z","1.2.3":"2014-12-19T09:14:04.224Z","1.2.4":"2014-12-23T03:34:39.537Z","1.3.0":"2014-12-30T10:05:19.556Z","1.4.0":"2015-01-06T10:19:53.569Z","1.4.1":"2015-01-08T04:39:35.720Z","1.5.0":"2015-01-22T14:57:10.045Z","1.5.1":"2015-01-22T15:00:19.438Z","1.5.2":"2015-02-02T15:36:20.379Z","1.5.3":"2015-02-02T16:33:04.290Z","1.5.4":"2015-02-02T16:58:31.426Z","1.5.5":"2015-02-10T04:34:33.450Z","1.5.6":"2015-02-11T06:19:34.891Z","1.5.7":"2015-02-11T07:57:26.685Z","1.5.8":"2015-02-12T11:07:06.768Z","2.0.0":"2015-03-04T11:58:48.147Z","2.0.1":"2015-03-04T12:09:11.179Z","2.0.2":"2015-03-04T12:10:25.246Z","2.1.0":"2015-03-10T15:34:24.238Z","3.0.0":"2015-03-13T09:22:12.333Z","3.0.1":"2015-03-18T10:24:50.697Z","3.1.0":"2015-03-23T13:27:27.625Z","3.1.1":"2015-04-21T07:28:32.793Z","3.1.2":"2015-04-29T08:23:26.449Z","3.2.0":"2015-05-11T06:23:16.715Z","3.3.0":"2015-05-13T04:58:50.995Z","3.4.0":"2015-05-19T07:29:02.302Z","3.4.1":"2015-05-21T11:06:41.280Z","3.4.2":"2015-05-21T11:24:36.482Z","3.5.0":"2015-05-26T14:56:20.543Z","3.5.1":"2015-05-26T15:44:51.345Z","3.5.2":"2015-05-26T15:46:24.626Z","3.5.3":"2015-05-27T03:40:13.565Z","3.6.0":"2015-05-27T11:46:55.062Z","3.7.0":"2015-06-01T08:18:15.767Z","3.7.1":"2015-06-02T12:55:23.879Z","3.8.0":"2015-06-03T05:49:09.793Z","3.8.1":"2015-06-03T10:41:06.731Z","3.8.2":"2015-06-03T12:04:48.982Z","3.8.3":"2015-06-03T12:13:26.392Z","3.8.4":"2015-06-11T02:55:45.519Z","3.9.0":"2015-06-11T08:14:51.313Z","3.9.1":"2015-06-17T08:50:02.065Z","3.10.0":"2015-07-01T07:48:07.500Z","3.10.1":"2015-07-02T12:37:49.756Z","3.11.0":"2015-07-20T09:38:48.611Z","3.12.0":"2015-07-30T12:38:55.512Z","3.12.1":"2015-08-04T10:25:38.995Z","3.12.2":"2015-08-04T10:31:42.236Z","3.12.3":"2015-08-04T10:40:30.447Z","3.12.4":"2015-08-07T03:00:05.706Z","3.13.0":"2015-08-14T22:06:54.831Z","3.14.0":"2015-08-21T06:18:18.328Z","3.14.1":"2015-08-21T07:33:22.926Z","3.14.2":"2015-08-23T16:04:47.771Z","3.15.0":"2015-08-24T06:29:33.160Z","3.16.0":"2015-08-25T09:06:24.841Z","3.16.1":"2015-08-25T09:26:37.991Z","3.16.2":"2015-09-14T12:46:25.654Z","4.0.0-alpha1":"2015-09-29T10:19:37.703Z","4.0.0-alpha2":"2015-09-29T10:27:16.069Z","4.0.0-alpha3":"2015-10-12T03:02:43.126Z","4.0.0-alpha4":"2015-10-19T15:32:05.213Z","4.0.0-alpha5":"2015-10-19T15:33:10.695Z","4.0.0-alpha6":"2015-10-22T05:16:55.107Z","4.0.0-alpha7":"2015-10-30T08:20:44.051Z","4.0.0-alpha8":"2015-10-30T08:26:43.703Z","4.0.0-alpha9":"2015-10-30T17:33:13.592Z","4.0.0-alpha10":"2015-11-02T12:46:54.362Z","4.0.0-alpha11":"2015-11-05T09:11:56.491Z","4.0.0-alpha12":"2015-11-08T18:07:46.161Z","4.0.0-alpha13":"2015-11-10T03:08:49.955Z","4.0.0-alpha14":"2015-11-10T14:38:14.576Z","4.0.0-alpha15":"2015-11-11T03:09:56.336Z","4.0.0-alpha16":"2015-11-11T09:56:50.594Z","4.0.0-alpha17":"2015-11-12T02:55:50.764Z","4.0.0-alpha18":"2015-11-12T08:04:52.598Z","4.0.0-alpha19":"2015-11-16T02:34:22.634Z","4.0.0-alpha20":"2015-11-16T09:56:45.889Z","4.0.0":"2015-11-18T10:31:54.136Z","4.0.1":"2015-11-24T09:43:15.261Z","5.0.0":"2015-12-21T11:42:55.537Z","5.0.1":"2015-12-21T12:18:08.748Z","5.0.2":"2015-12-22T08:35:35.457Z","5.1.0":"2015-12-25T09:16:29.754Z","5.2.0":"2015-12-28T03:06:39.391Z","5.2.1":"2016-01-06T05:32:43.362Z","5.2.2":"2016-01-14T07:27:39.799Z","5.3.0":"2016-01-18T14:23:14.146Z","5.3.1":"2016-01-25T12:38:14.828Z","5.4.0":"2016-02-18T11:08:43.082Z","5.4.1":"2016-02-18T12:56:11.765Z","5.4.2":"2016-02-22T02:44:10.381Z","5.5.0":"2016-03-22T12:15:38.493Z","5.5.1":"2016-04-08T19:22:56.015Z","5.5.2":"2016-05-16T04:22:34.275Z","5.5.3":"2016-05-18T03:22:58.055Z","5.5.4":"2016-05-26T03:42:11.074Z","5.5.5":"2016-06-14T09:51:36.139Z","5.5.6":"2016-06-16T12:14:28.427Z","5.5.7":"2016-06-20T07:33:27.455Z","5.6.0":"2016-06-20T09:00:13.386Z","5.6.1":"2016-06-21T08:33:37.497Z","5.5.8":"2016-06-21T08:39:04.470Z","5.6.2":"2016-06-21T09:07:06.730Z","6.0.0":"2016-07-13T13:50:26.567Z","6.0.1":"2016-07-13T14:18:05.843Z","6.0.2":"2016-07-18T04:01:54.433Z","7.0.0":"2016-08-05T17:21:49.988Z","7.0.2":"2016-08-11T08:41:28.496Z","7.0.3":"2016-08-26T19:57:44.309Z","7.0.4":"2016-09-02T14:45:59.590Z","7.1.0":"2016-09-10T14:25:52.352Z","7.2.0":"2016-09-23T17:26:21.367Z","7.2.1":"2016-10-13T10:36:40.794Z","7.3.0":"2016-10-18T05:18:53.897Z","7.3.1":"2016-10-19T04:42:26.245Z","7.4.0":"2016-11-01T03:18:38.329Z","7.4.1":"2016-11-04T17:05:22.840Z","7.4.2":"2016-11-07T05:16:41.053Z","7.4.3":"2016-11-07T09:31:50.289Z","7.4.4":"2016-11-14T03:27:52.789Z","7.5.0":"2016-11-16T03:46:47.274Z","7.5.1":"2016-11-16T03:52:17.281Z","7.5.2":"2016-12-16T18:16:42.158Z","7.5.3":"2017-01-03T08:45:43.810Z","7.6.0":"2017-01-11T04:37:13.419Z","7.6.1":"2017-01-20T04:40:04.669Z","7.6.2":"2017-02-07T03:29:13.295Z","7.6.3":"2017-02-15T03:13:06.530Z","7.6.4":"2017-02-15T10:29:24.356Z","7.6.5":"2017-02-16T12:07:51.400Z","7.6.6":"2017-03-01T02:34:20.649Z","7.6.7":"2017-03-01T02:45:48.053Z","7.7.0":"2017-03-15T06:20:16.777Z","7.7.1":"2017-03-20T08:53:46.026Z","7.8.0":"2017-04-01T06:19:25.212Z","8.0.0":"2017-04-07T08:36:50.049Z","8.0.1":"2017-04-10T07:16:00.338Z","8.1.0":"2017-04-10T08:59:57.180Z","8.1.1":"2017-04-21T02:32:39.371Z","8.1.2":"2017-04-24T08:37:40.898Z","8.1.3":"2017-05-04T03:47:22.658Z","8.2.0":"2017-05-16T06:30:21.232Z","8.3.0":"2017-05-18T06:45:07.364Z","8.3.1":"2017-05-22T02:25:05.153Z","8.3.2":"2017-05-26T01:26:28.565Z","8.3.3":"2017-05-26T02:43:58.848Z","8.4.0":"2017-05-31T01:59:56.346Z","8.4.1":"2017-06-07T08:45:29.501Z","8.4.2":"2017-06-09T10:01:21.649Z","8.4.3":"2017-06-13T03:57:04.666Z","8.4.4":"2017-06-14T08:39:17.456Z","8.4.5":"2017-06-20T01:25:22.949Z","8.4.6":"2017-06-28T07:36:02.450Z","8.4.7":"2017-07-24T02:21:37.884Z"},"readmeFilename":"README.md","homepage":"http://github.com/react-component/calendar"}