{"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"dist-tags":{"latest":"2.12.2","beta":"2.12.1-beta.3"},"description":"An enterprise-class UI design language and React-based implementation","readme":"<p align=\"center\">\n  <a href=\"http://ant.design\">\n    <img width=\"320\" src=\"https://t.alipayobjects.com/images/rmsweb/T1B9hfXcdvXXXXXXXX.svg\">\n  </a>\n</p>\n\n# Ant Design\n\n[![](https://img.shields.io/travis/ant-design/ant-design.svg?style=flat-square)](https://travis-ci.org/ant-design/ant-design)\n[![Codecov](https://img.shields.io/codecov/c/github/ant-design/ant-design/master.svg?style=flat-square)](https://codecov.io/gh/ant-design/ant-design/branch/master)\n[![Dependency Status](https://img.shields.io/gemnasium/react-component/trigger.svg?style=flat-square)](https://gemnasium.com/ant-design/ant-design)\n\n[![npm package](https://img.shields.io/npm/v/antd.svg?style=flat-square)](https://www.npmjs.org/package/antd)\n[![NPM downloads](http://img.shields.io/npm/dm/antd.svg?style=flat-square)](https://npmjs.org/package/antd)\n[![Percentage of issues still open](http://isitmaintained.com/badge/open/ant-design/ant-design.svg)](http://isitmaintained.com/project/ant-design/ant-design \"Percentage of issues still open\")\n[![Gitter](https://badges.gitter.im/ant-design/ant-design-english.svg)](https://gitter.im/ant-design/ant-design-english?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge) (English)\n[![Join the chat at https://gitter.im/ant-design/ant-design](https://img.shields.io/gitter/room/ant-design/ant-design.svg?style=flat-square)](https://gitter.im/ant-design/ant-design?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)（中文）\n\nAn enterprise-class UI design language and React-based implementation.\n\n[中文 README](README-zh_CN.md)\n\n## Features\n\n- An enterprise-class UI design language for web applications.\n- A set of high-quality React components out of the box.\n- Written in TypeScript with complete define types.\n- A npm + webpack + [dva](https://github.com/dvajs/dva) front-end development workflow.\n\n## Environment Support\n\n* Modern browsers and Internet Explorer 9+ (with [polyfills](https://ant.design/docs/react/getting-started#Compatibility))\n* Server-side Rendering\n* [Electron](http://electron.atom.io/)\n\n## Let's build a better antd together [![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)\n\n`antd` is an open source project, improvements are welcomed. If you are interested in contributing to `antd`, you can watch this repository, join in [discussion](https://github.com/ant-design/ant-design/issues?q=is%3Aopen+is%3Aissue+label%3ADiscussion), or try to implement some [features which have been accepted](https://github.com/ant-design/ant-design/issues?q=is%3Aopen+is%3Aissue+label%3A%22PR+welcome%22). Actually, there are [many ways](https://opensource.guide/how-to-contribute/) to contribute. And we are always happy to [offer collaborator permission](https://github.com/ant-design/ant-design/issues/3222) for some active contributors.\n\n## Install\n\n```bash\nnpm install antd\n```\n\n## Usage\n\n```jsx\nimport { DatePicker } from 'antd';\nReactDOM.render(<DatePicker />, mountNode);\n```\n\nAnd import style manually:\n\n```jsx\nimport 'antd/dist/antd.css';  // or 'antd/dist/antd.less'\n```\n\n### Use modularized antd\n\n- Use [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) (Recommended)\n\n   ```js\n   // .babelrc or babel-loader option\n   {\n     \"plugins\": [\n       [\"import\", { libraryName: \"antd\", style: \"css\" }] // `style: true` for less\n     ]\n   }\n   ```\n\n   Then you can import components from antd, equivalent to import manually below.\n\n   ```jsx\n   // import js and css modularly, parsed by babel-plugin-import\n   import { DatePicker } from 'antd';\n   ```\n\n- Manually import\n\n   ```jsx\n   import DatePicker from 'antd/lib/date-picker';  // for js\n   import 'antd/lib/date-picker/style/css';        // for css\n   // import 'antd/lib/date-picker/style';         // that will import less\n   ```\n\n### TypeScript\n\n```js\n// tsconfig.json\n{\n  \"compilerOptions\": {\n    \"moduleResolution\": \"node\",\n    \"jsx\": \"preserve\",\n    \"allowSyntheticDefaultImports\": true\n  }\n}\n```\n\n> Note:\n> - set `allowSyntheticDefaultImports` to prevent `error TS1192: Module 'react' has no default export`.\n> - Don't use @types/antd, antd provide a built-in ts definition already.\n\n## Internationalization\n\nSee [i18n](http://ant.design/docs/react/i18n).\n\n## Links\n\n- [Home page](http://ant.design/)\n- [UI library](http://ant.design/docs/react/introduce)\n- [Change Log](CHANGELOG.en-US.md)\n- [Official Scaffold Tool](https://github.com/dvajs/dva-cli/)\n- [Development Tool](http://ant-tool.github.io/)\n- [Scaffold Market](http://scaffold.ant.design)\n- [rc-components](http://react-component.github.io/)\n- [Mobile UI](http://mobile.ant.design)\n- [Motion](https://motion.ant.design)\n- [Developer Instruction](https://github.com/ant-design/ant-design/wiki/Development)\n- [Versioning Release Note](https://github.com/ant-design/ant-design/wiki/%E8%BD%AE%E5%80%BC%E8%A7%84%E5%88%99%E5%92%8C%E7%89%88%E6%9C%AC%E5%8F%91%E5%B8%83%E6%B5%81%E7%A8%8B)\n- [FAQ](https://github.com/ant-design/ant-design/wiki/FAQ)\n- [CodePen boilerplate](http://codepen.io/benjycui/pen/KgPZrE?editors=001) for bug reports\n- [Awesome Ant Design](https://github.com/websemantics/awesome-ant-design)\n- [Customize Theme](http://ant.design/docs/react/customize-theme)\n\n## Development\n\n```bash\n$ git clone git@github.com:ant-design/ant-design.git\n$ npm install\n$ npm start\n```\n\nOpen your browser and visit http://127.0.0.1:8001 , see more at https://github.com/ant-design/ant-design/wiki/Development .\n\n## Contributing\n\nWe welcome all contributions, please read our [CONTRIBUTING.md](https://github.com/ant-design/ant-design/blob/master/.github/CONTRIBUTING.md) first. You can submit any ideas as [pull requests](https://github.com/ant-design/ant-design/pulls) or as [GitHub issues](https://github.com/ant-design/ant-design/issues). If you'd like to improve code, check out the [Development Instructions](https://github.com/ant-design/ant-design/wiki/Development) and have a good time! :)\n","repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"users":{"panlw":true,"cdll":true,"sobear":true,"qqcome110":true,"sumdas":true,"freebird":true,"liuchangliang":true,"erci":true,"liujhfly":true,"sternelee":true,"jnoodle":true,"ivan403704409":true,"afc163":true,"zuizuihao":true,"oneshot":true,"bgsrb":true,"shakakira":true,"mhaidarh":true,"jimjin":true,"luankefei":true,"edision":true,"megawac":true,"nate-river":true,"guzhongren":true,"malloryerik":true,"chinawolf_wyp":true,"meadowcottage":true,"abdul":true,"arcticicestudio":true,"kenshinsyrup":true},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"license":"MIT","versions":{"0.0.1":{"name":"antd","version":"0.0.1","description":"","main":"index.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"author":"","license":"MIT","_id":"antd@0.0.1","_shasum":"03ba1a7381ab054d70ee3c813f70116d8a080bff","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"sorrycc","email":"sorrycc@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"}],"dist":{"shasum":"03ba1a7381ab054d70ee3c813f70116d8a080bff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.0.1.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.1.0-pre":{"name":"antd","version":"0.1.0-pre","title":"Ant Design","description":"下一个设计&前端框架","homepage":"http://ant-design.github.io/","repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"dependencies":{"css-animation":"~1.0.3","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","rc-calendar":"~3.10.0","rc-dialog":"~4.3.5","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.0","rc-menu":"~3.4.0","rc-progress":"~1.0.0","rc-select":"~4.0.0","rc-steps":"~1.1.0","rc-tabs":"~5.1.0","rc-tooltip":"~2.2.3","react-router":"~0.13.3"},"devDependencies":{"babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","buildbranch":"0.0.3","concurrently":"~0.1.0","css-loader":"~0.13.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"~0.8.1","jshint":"~2.8.0","json-loader":"~0.5.1","less":"~2.5.1","less-loader":"~2.2.0","lodash":"~3.8.0","nico-jsx":"~0.5.8","precommit-hook":"~1.0.7","style-loader":"~0.12.2","webpack":"~1.9.7","webpack-dev-middleware":"~1.0.11"},"scripts":{"babel":"babel components --out-dir lib","build":"npm run clean && webpack && nico build","start":"npm run clean && nico server --watch","clean":"rm -rf _site","deploy":"npm run build && node deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel"},"precommit":["lint"],"gitHead":"adc05ad22e9b9cc9c3af8a57d917a1f275deeed6","_id":"antd@0.1.0-pre","_shasum":"c023fc265cee3bcec77d790d24636bd76ce84908","_from":".","_npmVersion":"2.11.0","_nodeVersion":"2.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"}],"dist":{"shasum":"c023fc265cee3bcec77d790d24636bd76ce84908","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.1.0-pre.tgz"},"directories":{}},"0.1.0-beta2":{"name":"antd","version":"0.1.0-beta2","title":"Ant Design","description":"一个设计&前端框架","homepage":"http://ant-design.github.io/","keywords":["ant design","react-component","ui component"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.10.0","rc-collapse":"~1.2.2","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"^1.0.0","rc-progress":"~1.0.0","rc-select":"~4.4.0","rc-slider":"~1.2.6","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0","rc-checkbox":"~1.0.0","rc-radio":"~2.0.0"},"devDependencies":{"css-animation":"~1.0.3","autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","buildbranch":"^0.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","build":"npm run clean && webpack && nico build","pack":"npm run clean && webpack --optimize-minimize && nico build","start":"npm run clean && nico server --watch","clean":"rm -rf _site","deploy":"rm -rf node_modules && node scripts/install.js && npm run pack && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel  && rm -rf dist && webpack && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"23c983680508ebe25e812619f8ab64f89ec0ac07","_id":"antd@0.1.0-beta2","_shasum":"dd3b4d89ff1ccd8ca1d8570df921674c9c9147a8","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"dd3b4d89ff1ccd8ca1d8570df921674c9c9147a8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.1.0-beta2.tgz"},"directories":{}},"0.7.0-beta1":{"name":"antd","version":"0.7.0-beta1","title":"Ant Design","description":"一个设计&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.10.0","rc-collapse":"~1.2.2","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"^1.0.0","rc-progress":"~1.0.0","rc-select":"~4.4.0","rc-slider":"~1.2.6","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0","rc-checkbox":"~1.0.0","rc-radio":"~2.0.0"},"devDependencies":{"css-animation":"~1.0.3","autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","buildbranch":"^0.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","build":"npm run clean && webpack && nico build","pack":"npm run clean && webpack --optimize-minimize && nico build","start":"npm run clean && nico server --watch","clean":"rm -rf _site","deploy":"rm -rf node_modules && node scripts/install.js && npm run pack && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel  && rm -rf dist && webpack && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"269843bd07122a5046b3bee256da369c4430982b","_id":"antd@0.7.0-beta1","_shasum":"b36aa2c9495ee250662c340ffd76d0202a9f9c9b","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b36aa2c9495ee250662c340ffd76d0202a9f9c9b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.0-beta1.tgz"},"directories":{}},"0.7.0-beta2":{"name":"antd","version":"0.7.0-beta2","title":"Ant Design","description":"一个设计&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.10.0","rc-collapse":"~1.2.2","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"^1.0.0","rc-progress":"~1.0.0","rc-select":"~4.4.0","rc-slider":"~1.2.6","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0","rc-checkbox":"~1.0.0","rc-radio":"~2.0.0"},"devDependencies":{"css-animation":"~1.0.3","autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","buildbranch":"^0.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","build":"npm run clean && webpack && nico build","pack":"npm run clean && webpack --optimize-minimize && nico build","start":"npm run clean && nico server --watch","clean":"rm -rf _site","deploy":"rm -rf node_modules && node scripts/install.js && npm run pack && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel  && rm -rf dist && webpack && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"d9f2d5620a196d3f11a6cd13899279ae15fd28e3","_id":"antd@0.7.0-beta2","_shasum":"3f8f77ced4d86af1992fddff7960627bf8b29e1f","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3f8f77ced4d86af1992fddff7960627bf8b29e1f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.0-beta2.tgz"},"directories":{}},"0.7.0-beta3":{"name":"antd","version":"0.7.0-beta3","title":"Ant Design","description":"一个设计&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.2","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.2.6","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","build":"npm run clean && webpack && nico build","pack":"npm run clean && webpack --optimize-minimize && nico build","start":"npm run clean && nico server --watch","clean":"rm -rf _site","deploy":"rm -rf node_modules && node scripts/install.js && npm run pack && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel  && rm -rf dist && webpack && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"5ad9ff164223b1bb00c930aa3f7446833f481814","_id":"antd@0.7.0-beta3","_shasum":"59e455b25315b92f22be4d9eff1c1acfa1c44394","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"59e455b25315b92f22be4d9eff1c1acfa1c44394","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.0-beta3.tgz"},"directories":{}},"0.7.0":{"name":"antd","version":"0.7.0","title":"Ant Design","description":"一个设计&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.2","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack --optimize-minimize && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel  && rm -rf dist && webpack && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"fa790428aaf87bda1123b8a396a513c2849234cd","_id":"antd@0.7.0","_shasum":"9aa793e2a69c60ac511883ff08baecce2d349466","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9aa793e2a69c60ac511883ff08baecce2d349466","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.0.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.7.1":{"name":"antd","version":"0.7.1","stableVersion":"0.7.0","title":"Ant Design","description":"一个设计&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"e922af5e55ac5fb3ad6f15689a58b58c38853155","_id":"antd@0.7.1","_shasum":"7964c6686b6cd6f46d3bd0e55ac1ff12b52f8428","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"7964c6686b6cd6f46d3bd0e55ac1ff12b52f8428","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.1.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.7.2":{"name":"antd","version":"0.7.2","stableVersion":"0.7.2","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"e3b519601aada1fa9de68ee4bea3bd384c59fb2e","_id":"antd@0.7.2","_shasum":"8ccc8db47fdc07ae4303a189ec00b79b7fa5bdb0","_from":".","_npmVersion":"2.11.2","_nodeVersion":"0.12.6","_npmUser":{"name":"zhujun24","email":"zhujun87654321@gmail.com"},"dist":{"shasum":"8ccc8db47fdc07ae4303a189ec00b79b7fa5bdb0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.2.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.7.3-beta1":{"name":"antd","version":"0.7.3-beta1","stableVersion":"0.7.2","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"07e6ab4d48ace93b03844dc7faea7cb93e077851","_id":"antd@0.7.3-beta1","_shasum":"78867b898188909de9dfe23fc729a3eda49b5eff","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"78867b898188909de9dfe23fc729a3eda49b5eff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.3-beta1.tgz"},"directories":{}},"0.7.3-beta2":{"name":"antd","version":"0.7.3-beta2","stableVersion":"0.7.2","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"fb3b16ddc2e2ba00ce702a6e765931d87c296866","_id":"antd@0.7.3-beta2","_shasum":"3cd51204bdc0d29eb25f46bfbe7664a6edd003da","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"3cd51204bdc0d29eb25f46bfbe7664a6edd003da","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.3-beta2.tgz"},"directories":{}},"0.7.3-beta3":{"name":"antd","version":"0.7.3-beta3","stableVersion":"0.7.2","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"ba61ebd54bf92117afa6d4d1105cd3ec4c77e3eb","_id":"antd@0.7.3-beta3","_shasum":"7b0704bbd7ee4cef24d4f9042bf3a8a5ccafe8d4","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"7b0704bbd7ee4cef24d4f9042bf3a8a5ccafe8d4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.3-beta3.tgz"},"directories":{}},"0.7.3-beta4":{"name":"antd","version":"0.7.3-beta4","stableVersion":"0.7.2","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"~5.6.14","babel-core":"~5.4.7","babel-loader":"~5.1.3","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"~0.22.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"b6fe8021f8590af226dcb32fac862d473a8852e8","_id":"antd@0.7.3-beta4","_shasum":"97ec4327979c67dfa035e04a0f4173a1e0336d95","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"97ec4327979c67dfa035e04a0f4173a1e0336d95","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.3-beta4.tgz"},"directories":{}},"0.7.3-beta5":{"name":"antd","version":"0.7.3-beta5","stableVersion":"0.7.2","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"^0.24.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"aca61ea4275cd712bc6f8985d315b03c03dc607c","_id":"antd@0.7.3-beta5","_shasum":"9d4b3a7fc4b9ee216d0dae931555886100f614ab","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"9d4b3a7fc4b9ee216d0dae931555886100f614ab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.3-beta5.tgz"},"directories":{}},"0.7.3-beta6":{"name":"antd","version":"0.7.3-beta6","stableVersion":"0.7.2","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"^0.24.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"6f70303e904dd4acceba507869f2dabbe8eb2f42","_id":"antd@0.7.3-beta6","_shasum":"e06d18a32c53b6293b6d52fb8870417a767f63bb","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"e06d18a32c53b6293b6d52fb8870417a767f63bb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.3-beta6.tgz"},"directories":{}},"0.7.3":{"name":"antd","version":"0.7.3","stableVersion":"0.7.3","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~3.0.0","rc-calendar":"~3.11.0","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.4.0","rc-dropdown":"~1.1.1","rc-input-number":"~2.0.1","rc-menu":"~3.4.2","rc-notification":"~1.0.1","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.4.0","rc-slider":"~1.3.1","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.2.0","rc-tooltip":"~2.4.0"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"^0.24.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"a2b4bcb008eef3f4a58831d7b99199c08112a086","_id":"antd@0.7.3","_shasum":"58a4d37c46f686b81bb8fdd6cde833d5dfee2593","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"58a4d37c46f686b81bb8fdd6cde833d5dfee2593","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.7.3.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.8.0-beta1":{"name":"antd","version":"0.8.0-beta1","stableVersion":"0.7.3","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.2.5","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","is-equal-shallow":"~0.1.3","object-assign":"3.x","rc-calendar":"~3.12.3","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.5.0","rc-dropdown":"~1.2.0","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.0.3","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.6.1","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.5.0","rc-tree":"~0.10.0","rc-upload":"~1.2.4-beta2","rc-util":"~2.0.3","react-slick":"~0.6.4"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"^0.24.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0","busboy":"~0.2.9"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"137e40acae3733288d08b237f65cf89c2760a5b5","_id":"antd@0.8.0-beta1","_shasum":"e35cbb7141a0fbbd82c59e941e9effdf1c5a5436","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"e35cbb7141a0fbbd82c59e941e9effdf1c5a5436","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.0-beta1.tgz"},"directories":{}},"0.8.0-beta2":{"name":"antd","version":"0.8.0-beta2","stableVersion":"0.7.3","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","is-equal-shallow":"~0.1.3","object-assign":"3.x","rc-calendar":"~3.12.3","rc-checkbox":"~1.0.6","rc-collapse":"~1.2.3","rc-dialog":"~4.5.0","rc-dropdown":"~1.2.0","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.3.1","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.6.3","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.5.0","rc-tree":"~0.10.0","rc-upload":"~1.3.0","rc-util":"~2.0.3","react-slick":"~0.6.4"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"^0.24.1","eslint-plugin-react":"~2.5.0","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0","busboy":"~0.2.9"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"f93d05d2c87ce5a7b4e54ed4d18298d4cabd55f5","_id":"antd@0.8.0-beta2","_shasum":"b523dd00c4121a6fe0b37ce69539532fd64d14dc","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"b523dd00c4121a6fe0b37ce69539532fd64d14dc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.0-beta2.tgz"},"directories":{}},"0.8.0-beta3":{"name":"antd","version":"0.8.0-beta3","stableVersion":"0.7.3","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","is-equal-shallow":"~0.1.3","object-assign":"3.x","rc-calendar":"~3.13.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.2.3","rc-dialog":"~5.0.1","rc-dropdown":"~1.2.0","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.3.1","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.7.1","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.5.0","rc-tree":"~0.14.3","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick":"~0.6.4","reqwest":"~2.0.1"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-plugin-react":"~3.2.2","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0","busboy":"~0.2.9"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"6e542e4972d6fef4d8185fe82f4f39b094b825a3","_id":"antd@0.8.0-beta3","_shasum":"8a15e9a936140cd4d5a8cad7f5f1dc1c779a0f97","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"8a15e9a936140cd4d5a8cad7f5f1dc1c779a0f97","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.0-beta3.tgz"},"directories":{}},"0.8.0-beta4":{"name":"antd","version":"0.8.0-beta4","stableVersion":"0.7.3","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","is-equal-shallow":"~0.1.3","object-assign":"3.x","rc-calendar":"~3.13.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.2.3","rc-dialog":"~5.0.1","rc-dropdown":"~1.2.0","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.3.1","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.7.1","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.5.0","rc-tree":"~0.14.3","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick":"~0.6.4","reqwest":"~2.0.1"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","busboy":"~0.2.9","chalk":"~1.1.0","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-plugin-react":"~3.2.2","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"3bf7dce466276db8a3fbd97e9f7495b8d2456571","_id":"antd@0.8.0-beta4","_shasum":"aea0b9ec21458cc60e57095e151b09f4823edf03","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"aea0b9ec21458cc60e57095e151b09f4823edf03","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.0-beta4.tgz"},"directories":{}},"0.8.0-beta5":{"name":"antd","version":"0.8.0-beta5","stableVersion":"0.7.3","title":"Ant Design","description":"一个设计语言&前端框架","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","is-equal-shallow":"~0.1.3","object-assign":"3.x","rc-animate":"~1.1.0","rc-calendar":"~3.13.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.2.3","rc-dialog":"~5.0.1","rc-dropdown":"~1.2.0","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.3.1","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.0","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.5.0","rc-tree":"~0.14.3","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick2":"~0.6.6","reqwest":"~2.0.1"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","busboy":"~0.2.9","chalk":"~1.1.0","css-animation":"~1.0.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-plugin-react":"~3.2.2","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","rc-tabs":"~5.3.3","react-router":"~1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"aabf57a1175dbb0b66e83859592f58aeed7c8434","_id":"antd@0.8.0-beta5","_shasum":"a3ca39e90e3dcf7267dbb3d4333533bbcde1d747","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"a3ca39e90e3dcf7267dbb3d4333533bbcde1d747","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.0-beta5.tgz"},"directories":{}},"0.8.0-beta6":{"name":"antd","version":"0.8.0-beta6","stableVersion":"0.7.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","is-equal-shallow":"~0.1.3","object-assign":"3.x","rc-animate":"~1.2.0","rc-calendar":"~3.15.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.1","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.14.3","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick2":"~0.6.6","reqwest":"~2.0.2","xhr2":"~0.1.3"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","busboy":"~0.2.9","chalk":"~1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-plugin-react":"~3.2.2","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"~1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"5bfe60771c294a4a10bc7b89da2f369b28468c46","_id":"antd@0.8.0-beta6","_shasum":"10c9bc9f24c3da0da2c50741abe3dcb06889b042","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"10c9bc9f24c3da0da2c50741abe3dcb06889b042","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.0-beta6.tgz"},"directories":{}},"0.8.0-beta7":{"name":"antd","version":"0.8.0-beta7","stableVersion":"0.7.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"3.x","rc-animate":"~1.2.0","rc-calendar":"~3.15.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.1","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.2","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick2":"~0.6.6","velocity-animate":"^1.2.2","reqwest":"~2.0.2","xhr2":"~0.1.3"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","busboy":"~0.2.9","chalk":"~1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-plugin-react":"~3.2.2","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"~1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"f97e0c6c03a3753eb0a5730e7e0e7c8f8734e6ce","_id":"antd@0.8.0-beta7","_shasum":"551ed2bc7ec6019dad42c74c9c5101bd22c442b3","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"551ed2bc7ec6019dad42c74c9c5101bd22c442b3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.0-beta7.tgz"},"directories":{}},"0.8.0":{"name":"antd","version":"0.8.0","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.0","rc-calendar":"~3.15.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.1","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick2":"~0.6.6","reqwest":"~2.0.2","velocity-animate":"^1.2.2","xhr2":"~0.1.3"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","busboy":"~0.2.9","chalk":"~1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-plugin-react":"~3.2.2","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"~1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"8c2c65adf4be6bc1d9844b20bad4625306a7f9f0","_id":"antd@0.8.0","_shasum":"18e4de965cbea8c06cc9cd086e8168dd96dd7223","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"18e4de965cbea8c06cc9cd086e8168dd96dd7223","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.0.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.8.1-beta1":{"name":"antd","version":"0.8.1-beta1","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.0","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.1","rc-slider":"~1.4.0","rc-steps":"~1.1.4","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick2":"~0.6.6","reqwest":"~2.0.2","velocity-animate":"^1.2.2","xhr2":"~0.1.3"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","busboy":"~0.2.9","chalk":"~1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-plugin-react":"~3.2.2","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"~1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"6d2dcc45393b6ec0ad1ba73caf8b1ec42353743f","_id":"antd@0.8.1-beta1","_shasum":"452bc29824bd230394b4fdb0460ca3a3cc85642e","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"452bc29824bd230394b4fdb0460ca3a3cc85642e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.8.1-beta1.tgz"},"directories":{}},"0.9.0-beta1":{"name":"antd","version":"0.9.0-beta1","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.5","rc-slider":"~1.4.0","rc-steps":"~1.2.1","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick2":"~0.6.6","reqwest-without-xhr2":"~2.0.2","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"~2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-loader":"^5.3.2","busboy":"~0.2.9","chalk":"~1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-plugin-react":"~3.2.2","extract-text-webpack-plugin":"^0.8.1","gh-pages":"~0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"~1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"6ecbed5b5358cfa845b7f763558461f2f272e4ed","_id":"antd@0.9.0-beta1","_shasum":"1445f4d9fb98092d6dbb1dd54eec5ff34d6cc58e","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"1445f4d9fb98092d6dbb1dd54eec5ff34d6cc58e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta1.tgz"},"directories":{}},"0.9.0-beta2":{"name":"antd","version":"0.9.0-beta2","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.5","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"93550523598f054bed374d6d8451fe085de477c9","_id":"antd@0.9.0-beta2","_shasum":"51ebe5284024b8f5e743a39b4f65ab97fde59994","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"51ebe5284024b8f5e743a39b4f65ab97fde59994","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta2.tgz"},"directories":{}},"0.9.0-beta3":{"name":"antd","version":"0.9.0-beta3","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.5","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"e786f54c15d562b8ceeb5b1e4a129b898ef6f2bb","_id":"antd@0.9.0-beta3","_shasum":"704fb2dcc5c91df81c687d904be548e50fb9c18f","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"704fb2dcc5c91df81c687d904be548e50fb9c18f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta3.tgz"},"directories":{}},"0.9.0-beta4":{"name":"antd","version":"0.9.0-beta4","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.5","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"f229f86a75b8effdd5ed3ca5b4e061be0b3daa36","_id":"antd@0.9.0-beta4","_shasum":"eb0a71be2b6552230b0713136f418dc4eef6b468","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"eb0a71be2b6552230b0713136f418dc4eef6b468","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta4.tgz"},"directories":{}},"0.9.0-beta5":{"name":"antd","version":"0.9.0-beta5","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.5","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"5c00b0e66be0bcd63cb925a3bb8a7dea01e36d17","_id":"antd@0.9.0-beta5","_shasum":"e02f87e9f9cc1fc9a55f744fcbd6ded2ef46610f","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"e02f87e9f9cc1fc9a55f744fcbd6ded2ef46610f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta5.tgz"},"directories":{}},"0.9.0-beta6":{"name":"antd","version":"0.9.0-beta6","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.5","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.3.1","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"49101097896510526f7e00bbde720713ff27ead7","_id":"antd@0.9.0-beta6","_shasum":"5b2f73ffd2f76ac6803cc7ef13cfe456b77b42ae","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"5b2f73ffd2f76ac6803cc7ef13cfe456b77b42ae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta6.tgz"},"directories":{}},"0.9.0-beta7":{"name":"antd","version":"0.9.0-beta7","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.5","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.1.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"ea1a9f0a3df460ee96770d5f6743cba30b4bced4","_id":"antd@0.9.0-beta7","_shasum":"754f2e69bca77bc8598257dc52ccd4a3b2511428","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"754f2e69bca77bc8598257dc52ccd4a3b2511428","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta7.tgz"},"directories":{}},"0.9.0-beta8":{"name":"antd","version":"0.9.0-beta8","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.8.5","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"6ca6d1062ad617e43d6015ea051d1d97abee3c06","_id":"antd@0.9.0-beta8","_shasum":"45da8e1931b4024af7c038a3bd64c7b1be00169b","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"45da8e1931b4024af7c038a3bd64c7b1be00169b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta8.tgz"},"directories":{}},"0.9.0-beta9":{"name":"antd","version":"0.9.0-beta9","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.3.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","prepublish":"npm run babel && rm -rf dist && webpack --config webpack.config.production.js && node scripts/prenpm.js"},"precommit":["lint"],"gitHead":"05eaf52aca4091156d14112250b9feac6f77e7b4","_id":"antd@0.9.0-beta9","_shasum":"c98033604d4a6fe35fad39a3879e4f2cd638449b","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"c98033604d4a6fe35fad39a3879e4f2cd638449b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta9.tgz"},"directories":{}},"0.9.0-beta10":{"name":"antd","version":"0.9.0-beta10","stableVersion":"0.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.4.9","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"^1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"c7efbb6de00e90df67938a036118af1279fef588","_id":"antd@0.9.0-beta10","_shasum":"f5c4afcbc07a0639a204703f6c9a675f6b1cdc5c","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"f5c4afcbc07a0639a204703f6c9a675f6b1cdc5c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0-beta10.tgz"},"directories":{}},"0.9.0":{"name":"antd","version":"0.9.0","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.4.9","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"c2b80ddb60d523b9f94fa6e2f30a5ac99109875e","_id":"antd@0.9.0","_shasum":"793480903f144fa835497b9f8392af37f1854f23","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"793480903f144fa835497b9f8392af37f1854f23","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.0.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.9.1-beta1":{"name":"antd","version":"0.9.1-beta1","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.4.9","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.2.3","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"13ebd2d76de00b98f44eb181bb03ad0e4a5689f4","_id":"antd@0.9.1-beta1","_shasum":"8d45461285c307a175c1ccc34572fe1e153b0cc6","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"8d45461285c307a175c1ccc34572fe1e153b0cc6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta1.tgz"},"directories":{}},"0.9.1-beta2":{"name":"antd","version":"0.9.1-beta2","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.4.9","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.4.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.2.4","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-beta3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"278880119d74c484d562488bfbdeb03d2590fcd1","_id":"antd@0.9.1-beta2","_shasum":"1c6c6a0de4e2df90dff7189825df602686bb8ff0","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"1c6c6a0de4e2df90dff7189825df602686bb8ff0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta2.tgz"},"directories":{}},"0.9.1-beta3":{"name":"antd","version":"0.9.1-beta3","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.5.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.2.4","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"4e23745bc0564f9f4d72cf8192f2f79c70f3fc39","_id":"antd@0.9.1-beta3","_shasum":"0b0c1d96215eecbdec927054f8236c46e037849a","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"0b0c1d96215eecbdec927054f8236c46e037849a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta3.tgz"},"directories":{}},"0.9.1-beta4":{"name":"antd","version":"0.9.1-beta4","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.2.4","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.4.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"4c7deda28b3a41437150ce05c4b33ec747e8ddf6","_id":"antd@0.9.1-beta4","_shasum":"47143489184be4c61a5499c61e66575d8585bad6","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"47143489184be4c61a5499c61e66575d8585bad6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta4.tgz"},"directories":{}},"0.9.1-beta5":{"name":"antd","version":"0.9.1-beta5","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.0","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.5.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"1d31b8e0be306ddbe91fb9033ea85e4bd083e614","_id":"antd@0.9.1-beta5","_shasum":"64017efc1ad29c53528fff77f5d2abf365df2336","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"64017efc1ad29c53528fff77f5d2abf365df2336","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta5.tgz"},"directories":{}},"0.9.1-beta6":{"name":"antd","version":"0.9.1-beta6","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.0","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.5.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"74d8ecb1fd4453964d196427276705ea28c69651","_id":"antd@0.9.1-beta6","_shasum":"6e5578f100e57cd3ddeb389cfcc21ddf7f233dc7","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"6e5578f100e57cd3ddeb389cfcc21ddf7f233dc7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta6.tgz"},"directories":{}},"0.9.1-beta7":{"name":"antd","version":"0.9.1-beta7","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.5.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"43430984269dd03e5f15e3202ace0d3b8890e5be","_id":"antd@0.9.1-beta7","_shasum":"562275b8a1314bb10eac821b85dbf1c0582c8819","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"562275b8a1314bb10eac821b85dbf1c0582c8819","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta7.tgz"},"directories":{}},"0.9.1-beta9":{"name":"antd","version":"0.9.1-beta9","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.5.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"df4f747b655f57f2dfaf8dfe467cf9a1d420daa1","_id":"antd@0.9.1-beta9","_shasum":"7d671471ba0ad1fc63cc29a3a2ac401a8f42efca","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"7d671471ba0ad1fc63cc29a3a2ac401a8f42efca","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta9.tgz"},"directories":{}},"0.9.1-beta10":{"name":"antd","version":"0.9.1-beta10","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.5.0","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"6854a8398944ac748d82da256ba49198cf730e1a","_id":"antd@0.9.1-beta10","_shasum":"a60d431c1ef41603174db76e6372b5e57811ef15","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"a60d431c1ef41603174db76e6372b5e57811ef15","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta10.tgz"},"directories":{}},"0.9.1-beta11":{"name":"antd","version":"0.9.1-beta11","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"961b990f078761055ac24651820309b0c3378523","_id":"antd@0.9.1-beta11","_shasum":"739aad3f81200bac59b06a4edf72d83c653e919d","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"739aad3f81200bac59b06a4edf72d83c653e919d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta11.tgz"},"directories":{}},"0.9.1-beta12":{"name":"antd","version":"0.9.1-beta12","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.6.4","rc-tree":"~0.15.4","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"8cc42581bb0153e5926022b3be85b87f3c506df2","_id":"antd@0.9.1-beta12","_shasum":"070590fe0c9a2f6fc22b3928ca4e59cabaafb2a0","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"070590fe0c9a2f6fc22b3928ca4e59cabaafb2a0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta12.tgz"},"directories":{}},"0.9.1-beta13":{"name":"antd","version":"0.9.1-beta13","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.8.0","rc-tree":"~0.15.4","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"8384512bf9b454c15e55bd8014874392fa36e673","_id":"antd@0.9.1-beta13","_shasum":"c0ca17ad7ef8bcf030e7f859832a6fd01359fb08","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"c0ca17ad7ef8bcf030e7f859832a6fd01359fb08","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1-beta13.tgz"},"directories":{}},"0.9.1":{"name":"antd","version":"0.9.1","stableVersion":"0.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.8.0","rc-tree":"~0.15.4","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.7.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"c98c3eef57d51a62e98777d091d27cfa7daaf291","_id":"antd@0.9.1","_shasum":"0e8f7d3cf31fef2e1f374789d5f46d6873f62998","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"0e8f7d3cf31fef2e1f374789d5f46d6873f62998","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.1.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.0-beta2":{"name":"antd","version":"0.10.0-beta2","stableVersion":"0.9.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"4.0.0-alpha5","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.1.2","rc-menu":"~4.6.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.1","rc-slider":"~1.5.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~3.0.1","rc-tree":"~0.16.2","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.14.0","react-dom":"~0.14.0","react-router":"1.0.0-rc1","semver":"~5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"a8ed06ec86b11622922c5c82b86ca626669340ec","_id":"antd@0.10.0-beta2","_shasum":"8f8fffbfda7a751c364e1c7f11b5e6e12aaaeccf","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"8f8fffbfda7a751c364e1c7f11b5e6e12aaaeccf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta2.tgz"},"directories":{}},"0.10.0-beta3":{"name":"antd","version":"0.10.0-beta3","stableVersion":"0.9.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"4.0.0-alpha5","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.1.2","rc-menu":"~4.6.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.1","rc-slider":"~1.5.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.4.1","rc-tooltip":"~3.0.1","rc-tree":"~0.16.2","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.14.0","react-dom":"~0.14.0","react-router":"1.0.0-rc1","semver":"~5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"8c71530838a79cd88f7bfddc74a71b7b6e8671a6","_id":"antd@0.10.0-beta3","_shasum":"8e8c5ff965058a7a3d94f6a7b319f65b0086a40d","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"8e8c5ff965058a7a3d94f6a7b319f65b0086a40d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta3.tgz"},"directories":{}},"0.10.0-beta4":{"name":"antd","version":"0.10.0-beta4","stableVersion":"0.9.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"4.0.0-alpha5","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.1.2","rc-menu":"~4.6.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.1","rc-slider":"~1.5.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.4.2","rc-tooltip":"~3.0.1","rc-tree":"~0.16.2","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.14.0","react-dom":"~0.14.0","react-router":"1.0.0-rc1","semver":"~5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"02ac02c2527c45a776766aeaaa18f5e4df53c7f4","_id":"antd@0.10.0-beta4","_shasum":"7794be65493d25dbb62b4951e633533b6fd5ac5a","_from":".","_npmVersion":"3.3.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"7794be65493d25dbb62b4951e633533b6fd5ac5a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta4.tgz"},"directories":{}},"0.10.0-beta5":{"name":"antd","version":"0.10.0-beta5","stableVersion":"0.9.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"4.0.0-alpha6","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.1.2","rc-menu":"~4.6.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~1.5.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.4.2","rc-tooltip":"~3.0.1","rc-tree":"~0.16.2","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.14.0","react-dom":"~0.14.0","react-router":"1.0.0-rc1","semver":"~5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"fdee1394592153e4b105330c276c4c0ebe487bd1","_id":"antd@0.10.0-beta5","_shasum":"d971f3bd4ad0d5cb1db325db035abcdda244c323","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"d971f3bd4ad0d5cb1db325db035abcdda244c323","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta5.tgz"},"directories":{}},"0.10.0-beta6":{"name":"antd","version":"0.10.0-beta6","stableVersion":"0.9.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"4.0.0-alpha6","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.1.2","rc-menu":"~4.6.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~1.5.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.4.2","rc-tooltip":"~3.0.1","rc-tree":"~0.16.2","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.14.0","react-dom":"~0.14.0","react-router":"1.0.0-rc1","semver":"~5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"a687c32b1d11c98df36a279b5fc9d5c1ae70ab26","_id":"antd@0.10.0-beta6","_shasum":"39586b1043b8b9d311923d3aba559d75f1228cab","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"39586b1043b8b9d311923d3aba559d75f1228cab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta6.tgz"},"directories":{}},"0.10.0-beta7":{"name":"antd","version":"0.10.0-beta7","stableVersion":"0.9.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"2.0.x","rc-calendar":"4.0.0-alpha6","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.0","rc-form-validation":"~2.4.7","rc-input-number":"~2.1.2","rc-menu":"~4.6.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~1.5.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.0.1","rc-tree":"~0.16.2","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.14.0","react-dom":"~0.14.0","react-router":"1.0.0-rc1","semver":"~5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"8729808625d39a2f082d83aede6f7b1eb318e8a5","_id":"antd@0.10.0-beta7","_shasum":"e1316c96fe875615b3a407eca0ff2a9c190837ab","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"e1316c96fe875615b3a407eca0ff2a9c190837ab","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta7.tgz"},"directories":{}},"0.9.2":{"name":"antd","version":"0.9.2","stableVersion":"0.9.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.8.0","rc-tree":"~0.15.4","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.13.0","react-router":"1.0.0-rc1","semver":"~5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"1ccd553e17844557e572f2d5ec0da28317e8c241","_id":"antd@0.9.2","_shasum":"ab84238ab60b02076edab23a010563a3fc102209","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"ab84238ab60b02076edab23a010563a3fc102209","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.2.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.0-beta8":{"name":"antd","version":"0.10.0-beta8","stableVersion":"0.9.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~3.1.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha6","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.0","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.6.2","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~1.5.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.3.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.0.1","rc-tree":"~0.16.2","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.14.0","react-dom":"~0.14.0","react-router":"1.0.0-rc1","semver":"~5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"fce8ab5e64711e278093beebc617db95f946bc9f","_id":"antd@0.10.0-beta8","_shasum":"1a66c656da87b086a341716267b18f4da863c6a4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"1a66c656da87b086a341716267b18f4da863c6a4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta8.tgz"},"directories":{}},"0.10.0-beta9":{"name":"antd","version":"0.10.0-beta9","stableVersion":"0.9.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~3.1.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha9","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.0","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.4.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.0.1","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"0.14.0","react-dom":"0.14.0","react-router":"1.0.0-rc3","semver":"^5.0.3","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"ebfd5ae0bf687226aac5ea25b9ee533beae9665c","_id":"antd@0.10.0-beta9","_shasum":"6009224c466a8ffe2c15ab61c2c848464d12409e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"6009224c466a8ffe2c15ab61c2c848464d12409e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta9.tgz"},"directories":{}},"0.9.3":{"name":"antd","version":"0.9.3","stableVersion":"0.9.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.8.0","rc-tree":"~0.15.4","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0","semver":"~5.0.3"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.13.0","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"39f86133798ae2cea8dcde1d2c12890718615443","_id":"antd@0.9.3","_shasum":"69c2894957c0ab35460ba774a5aa686869648b5a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"69c2894957c0ab35460ba774a5aa686869648b5a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.3.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.0-beta10":{"name":"antd","version":"0.10.0-beta10","stableVersion":"0.9.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.4.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack && jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"052e8ee0f4d286fbee1a4f2f2c762a557755514b","_id":"antd@0.10.0-beta10","_shasum":"ba2f9a4cf22df0f985b46be4e7e5c337a105af03","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"ba2f9a4cf22df0f985b46be4e7e5c337a105af03","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta10.tgz"},"directories":{}},"0.10.0-beta11":{"name":"antd","version":"0.10.0-beta11","stableVersion":"0.9.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.4.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack && jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"423a1694324dbeb3fbfc6e389b6cbb4a889012d7","_id":"antd@0.10.0-beta11","_shasum":"53673da4b6b358d2f0d75ac93c23f158a5af8255","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"53673da4b6b358d2f0d75ac93c23f158a5af8255","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta11.tgz"},"directories":{}},"0.10.0-beta12":{"name":"antd","version":"0.10.0-beta12","stableVersion":"0.9.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.4.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack && jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"67692360734080b38b948715321f74ba777c2b75","_id":"antd@0.10.0-beta12","_shasum":"bb49f3fc52bef1a6da368621340566d195942711","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"bb49f3fc52bef1a6da368621340566d195942711","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta12.tgz"},"directories":{}},"0.10.0-beta13":{"name":"antd","version":"0.10.0-beta13","stableVersion":"0.9.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.4.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack && jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"2eced48c85f13ab8017bc23f5c6baccf7154e6db","_id":"antd@0.10.0-beta13","_shasum":"c3106d62b8a700a5498b3e266a2d3895e7a243da","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"c3106d62b8a700a5498b3e266a2d3895e7a243da","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta13.tgz"},"directories":{}},"0.10.0-beta14":{"name":"antd","version":"0.10.0-beta14","stableVersion":"0.9.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.4.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack && jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"cef93e21489fc2b285d3ca15a59e9320798f2e09","_id":"antd@0.10.0-beta14","_shasum":"50429056618c46246b0aac8d89d4e4f8f48d22c2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"50429056618c46246b0aac8d89d4e4f8f48d22c2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta14.tgz"},"directories":{}},"0.10.0-beta15":{"name":"antd","version":"0.10.0-beta15","stableVersion":"0.9.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack && jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"e9a178fb43cafb380a96792590b40acd20db425e","_id":"antd@0.10.0-beta15","_shasum":"ebae9c564ab77d1795fa46d18dd43011589c055f","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"ebae9c564ab77d1795fa46d18dd43011589c055f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta15.tgz"},"directories":{}},"0.10.0-beta16":{"name":"antd","version":"0.10.0-beta16","stableVersion":"0.9.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","lesslint":"lesslint style","test":"npm run lint && webpack && jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"dc1650486d092404d2f66a8363ea549f96384506","_id":"antd@0.10.0-beta16","_shasum":"d1cfa93f2d955d2ba1c727d42486576f21d1d476","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"d1cfa93f2d955d2ba1c727d42486576f21d1d476","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta16.tgz"},"directories":{}},"0.9.4":{"name":"antd","version":"0.9.4","stableVersion":"0.9.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.8.0","rc-tree":"~0.15.4","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0","semver":"~5.0.3"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.13.0","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"5bcdcc3fce70c69fd5d85c35520cf982aa0ebc20","_id":"antd@0.9.4","_shasum":"1a9bb1b52d4246eaf61b71e13fa4163fdb8b47fc","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"1a9bb1b52d4246eaf61b71e13fa4163fdb8b47fc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.4.tgz"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.0-beta17":{"name":"antd","version":"0.10.0-beta17","stableVersion":"0.9.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"56c8f89dbc1b090acf064c46304938dbec42e3a0","_id":"antd@0.10.0-beta17","_shasum":"1190e4bb5fc6273f03cfbf989eeeae805faf5df6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"1190e4bb5fc6273f03cfbf989eeeae805faf5df6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta17.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta18":{"name":"antd","version":"0.10.0-beta18","stableVersion":"0.9.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.1.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"8005455ddda9e16c5d63357d637636da73189ad1","_id":"antd@0.10.0-beta18","_shasum":"d6f441a41acf625b072602be64b583a0f78027a2","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"d6f441a41acf625b072602be64b583a0f78027a2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta18.tgz"},"directories":{}},"0.10.0-beta19":{"name":"antd","version":"0.10.0-beta19","stableVersion":"0.9.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.2.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.7.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.2","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"15a13c1076b9ea17e0dc2ac5a18fb500bfa09a63","_id":"antd@0.10.0-beta19","_shasum":"9425b3dc778b96b31e414c1d6653ebdedf571f30","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"9425b3dc778b96b31e414c1d6653ebdedf571f30","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta19.tgz"},"directories":{}},"0.10.0-beta20":{"name":"antd","version":"0.10.0-beta20","stableVersion":"0.9.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.2.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.8.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.2","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"ac98bb9cf7c78a851e5232beca3e6027e1d130d6","_id":"antd@0.10.0-beta20","_shasum":"9475b5e5780e413a069c8b7f117fe331af01df9d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"9475b5e5780e413a069c8b7f117fe331af01df9d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta20.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta21":{"name":"antd","version":"0.10.0-beta21","stableVersion":"0.9.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.2.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.8.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.2","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"573e90aa1adfe5158bd31224f082509359a75836","_id":"antd@0.10.0-beta21","_shasum":"3dd6511d06ca51d0705ce0e0d0dfe7d55b539b1d","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"3dd6511d06ca51d0705ce0e0d0dfe7d55b539b1d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta21.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta22":{"name":"antd","version":"0.10.0-beta22","stableVersion":"0.9.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha10","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.2.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.8.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.2","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.1.0","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","precommit-hook":"^1.0.7","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc4","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"precommit":["lint"],"gitHead":"01dd197111cc781be49c7e86c09f1509c8308471","_id":"antd@0.10.0-beta22","_shasum":"832ce37948434de3a00fc8324cd183327988894a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"832ce37948434de3a00fc8324cd183327988894a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta22.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.9.5":{"name":"antd","version":"0.9.5","stableVersion":"0.9.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib"],"license":"MIT","dependencies":{"css-animation":"~1.1.0","enter-animation":"~0.5.0","gregorian-calendar":"~3.0.0","gregorian-calendar-format":"~3.0.1","object-assign":"~4.0.1","rc-animate":"~1.2.9","rc-calendar":"~3.16.1","rc-checkbox":"~1.1.1","rc-collapse":"~1.3.0","rc-dialog":"~5.0.2","rc-dropdown":"~1.3.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.0.1","rc-menu":"~4.6.0","rc-notification":"~1.1.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-radio":"~2.0.0","rc-select":"~4.9.0","rc-slider":"~1.4.0","rc-steps":"~1.3.2","rc-switch":"~1.2.0","rc-table":"~3.2.0","rc-tabs":"~5.3.2","rc-tooltip":"~2.8.0","rc-tree":"~0.15.4","rc-upload":"~1.6.4","rc-util":"~2.0.3","react-slick":"~0.8.0","reqwest-without-xhr2":"~2.0.2","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0","semver":"~5.0.3"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.12","babel-core":"^5.8.12","babel-eslint":"^4.1.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.0.8","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","json-loader":"^0.5.1","less":"~2.5.1","less-loader":"^2.2.0","lesslint":"^0.1.7","lodash":"^3.10.0","nico-jsx":"~0.5.8","precommit-hook":"^1.0.7","react":"~0.13.0","react-router":"1.0.0-rc1","webpack":"^1.10.1","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components --out-dir lib","release":"npm run clean && webpack --config webpack.config.production.js && webpack --config webpack.config.min.js && zip dist/${npm_package_name}-${npm_package_version}.zip -j dist dist/*","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack && webpack --config webpack.config.min.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components --ext '.js,.jsx'","lesslint":"lesslint style","test":"webpack && npm run lint","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta"},"precommit":["lint"],"gitHead":"e1a6123aa6a4cf47b3be8d681692b7256d4485c6","_id":"antd@0.9.5","_shasum":"9b5aaaab7cbb4a06bb3004c2db80d38137dc2890","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"9b5aaaab7cbb4a06bb3004c2db80d38137dc2890","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.9.5.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.0-beta23":{"name":"antd","version":"0.10.0-beta23","stableVersion":"0.9.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha13","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.2.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.8.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.10.5","rc-radio":"~2.0.0","rc-select":"~5.0.2","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.4.3","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-upload":"~1.6.4","rc-util":"~2.1.0","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"1.0.0-rc4","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"bd826a2582febaefb708e27614adc8ed551cd2d0","_id":"antd@0.10.0-beta23","_shasum":"55b76b79eb832d20ac53ff1db57eac57a3e751fb","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"55b76b79eb832d20ac53ff1db57eac57a3e751fb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta23.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta25":{"name":"antd","version":"0.10.0-beta25","stableVersion":"0.9.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.0","rc-calendar":"4.0.0-alpha18","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.0","rc-dialog":"~5.2.0","rc-dropdown":"~1.4.3","rc-form-validation":"~2.4.7","rc-input-number":"~2.3.0","rc-menu":"~4.8.0","rc-notification":"~1.2.0","rc-pagination":"~1.1.0","rc-progress":"~1.0.0","rc-queue-anim":"~0.11.0","rc-radio":"~2.0.0","rc-select":"~5.1.0","rc-slider":"~2.0.0","rc-steps":"~1.4.0","rc-switch":"~1.2.0","rc-table":"~3.5.0","rc-tabs":"~5.5.0","rc-tooltip":"~3.1.0","rc-tree":"~0.18.1","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"c499f78eb62cffab1a1f50abf046e80f36527fd4","_id":"antd@0.10.0-beta25","_shasum":"504786b94b97d4174c1681a3a4394f7a0773bfcb","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"504786b94b97d4174c1681a3a4394f7a0773bfcb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta25.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta26":{"name":"antd","version":"0.10.0-beta26","stableVersion":"0.9.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"4.0.0-alpha19","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.0","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.2.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.0","rc-radio":"~2.0.0","rc-select":"~5.1.1","rc-slider":"~2.3.2","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.1","rc-tabs":"~5.5.0","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","history":"~1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"908b8eb90f977d1dbf5524a144b4754b5eedb964","_id":"antd@0.10.0-beta26","_shasum":"5fc174c8f6e8f69a3a78442439660562e8b030d5","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"5fc174c8f6e8f69a3a78442439660562e8b030d5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta26.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta27":{"name":"antd","version":"0.10.0-beta27","stableVersion":"0.9.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"4.0.0-alpha20","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.2.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~2.3.2","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.1","rc-tabs":"~5.5.0","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","history":"~1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"abfe35c19f04c0b96d00aa0d09f0a730fe82234f","_id":"antd@0.10.0-beta27","_shasum":"0799f5be0b8f5ce7862a83e03fee6db7e50842b6","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"0799f5be0b8f5ce7862a83e03fee6db7e50842b6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta27.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta28":{"name":"antd","version":"0.10.0-beta28","stableVersion":"0.9.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"4.0.0-alpha20","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.2.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.0.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.1","rc-tabs":"~5.5.0","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"~1.5.3","css-loader":"^0.14.1","eslint":"^1.1.0","eslint-config-airbnb":"^0.1.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.8.1","gh-pages":"^0.3.1","history":"~1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.1","react-addons-test-utils":"~0.14.1","react-dom":"~0.14.1","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"a167e618845fcafad79b0057de0aa45e6a016caa","_id":"antd@0.10.0-beta28","_shasum":"dd07eeecbc382454c86562deb42b6f09fe2a5bff","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"dd07eeecbc382454c86562deb42b6f09fe2a5bff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta28.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta29":{"name":"antd","version":"0.10.0-beta29","stableVersion":"0.9.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.2.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.1.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.1","rc-tabs":"~5.5.0","rc-time-picker":"~0.5.6","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"c1f49640486157888fa69d6267769cc601c0c8d6","_id":"antd@0.10.0-beta29","_shasum":"2411c063e6c3aaef53bfa4223bd0e67444120d3e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"2411c063e6c3aaef53bfa4223bd0e67444120d3e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta29.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0-beta30":{"name":"antd","version":"0.10.0-beta30","stableVersion":"0.9.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.2.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.1.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.1","rc-tabs":"~5.5.0","rc-time-picker":"~0.6.0","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-eslint":"^4.1.0","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"822d004e0ae002d0d02db15caed6187f810f4d2f","_id":"antd@0.10.0-beta30","_shasum":"abbfbef23f90d1c2e61cdb2b46fa66d3b4aa762e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"abbfbef23f90d1c2e61cdb2b46fa66d3b4aa762e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0-beta30.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.10.0":{"name":"antd","version":"0.10.0","stableVersion":"0.10.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.2.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.1.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.1","rc-tabs":"~5.5.0","rc-time-picker":"~0.7.1","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"301e50c820d46771441f1e53403bb02952897ce7","_id":"antd@0.10.0","_shasum":"7791cc5684cb52d9f1801cd64dae771b68c93344","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"7791cc5684cb52d9f1801cd64dae771b68c93344","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.0.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.1":{"name":"antd","version":"0.10.1","stableVersion":"0.10.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.2.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.1.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.1","rc-tabs":"~5.5.0","rc-time-picker":"~0.7.1","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"05ef4a62d1434d39d1219703efa7ff89cf4ea301","_id":"antd@0.10.1","_shasum":"231d343be2db4728e8ee7971f84ef2278ce18787","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"231d343be2db4728e8ee7971f84ef2278ce18787","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.1.tgz"},"maintainers":[{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.2":{"name":"antd","version":"0.10.2","stableVersion":"0.10.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.2.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.1.2","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.1","rc-tabs":"~5.5.0","rc-time-picker":"~0.7.1","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"69433ebf9c39ba49695a6393f8e9e9204f70e3ae","_id":"antd@0.10.2","_shasum":"1762296947dfcf6ec5af6cf86603f2498ca9e3d1","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"1762296947dfcf6ec5af6cf86603f2498ca9e3d1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.3":{"name":"antd","version":"0.10.3","stableVersion":"0.10.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.1.2","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.2","rc-tabs":"~5.5.0","rc-time-picker":"~0.7.1","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-markdown":"git+https://github.com/ant-design/eslint-plugin-markdown.git","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint":"git+https://github.com/ant-design/lesshint.git","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"beaa01d4ef4671c79876dc7ace30296dcab446df","_id":"antd@0.10.3","_shasum":"b3c67f0e551516979e36de05e4d3c8f843ba87d4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"b3c67f0e551516979e36de05e4d3c8f843ba87d4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.4":{"name":"antd","version":"0.10.4","stableVersion":"0.10.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.1.2","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.2","rc-tabs":"~5.5.0","rc-time-picker":"~0.7.1","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-markdown":"git+https://github.com/ant-design/eslint-plugin-markdown.git","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint":"git+https://github.com/ant-design/lesshint.git","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"cad92a5b496d4dee579b4cb4900e824ec8c6d9fe","_id":"antd@0.10.4","_shasum":"74ba1806b90d44e6457ce56ec95314235e19c908","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"74ba1806b90d44e6457ce56ec95314235e19c908","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.11.0-beta1":{"name":"antd","version":"0.11.0-beta1","stableVersion":"0.10.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.2.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.2","rc-tabs":"~5.5.0","rc-time-picker":"1.0.0-alpha6","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"~1.13.1","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"~1.1.0","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"269326abaac9f292e6f1133e8d19f736c97bdeb6","_id":"antd@0.11.0-beta1","_shasum":"f4ba29ee9d9cca9312b00e7fab2d0724f2c7886a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"f4ba29ee9d9cca9312b00e7fab2d0724f2c7886a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.0-beta1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.11.0-beta2":{"name":"antd","version":"0.11.0-beta2","stableVersion":"0.10.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.2.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.2","rc-tabs":"~5.5.0","rc-time-picker":"1.0.0-alpha9","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"~1.13.1","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-copy-to-clipboard":"^3.0.4","react-dom":"~0.14.2","react-router":"~1.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"b8d14936e9d8e0be224d8b990496a2b78d567d4a","_id":"antd@0.11.0-beta2","_shasum":"325548834c89021da7a2100adf7ea7643181c7a1","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"325548834c89021da7a2100adf7ea7643181c7a1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.0-beta2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.11.0-beta3":{"name":"antd","version":"0.11.0-beta3","stableVersion":"0.10.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.2.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.2","rc-tabs":"~5.5.0","rc-time-picker":"1.0.0-alpha9","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"~1.13.1","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-copy-to-clipboard":"^3.0.4","react-dom":"~0.14.2","react-router":"~1.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"d45bd4c79df2618d88683b6bc9588b9963b1aceb","_id":"antd@0.11.0-beta3","_shasum":"06da291897efb99f094b551f4e492e5d4a2b4ccd","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"06da291897efb99f094b551f4e492e5d4a2b4ccd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.0-beta3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.11.0-beta4":{"name":"antd","version":"0.11.0-beta4","stableVersion":"0.10.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.0.2","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.4","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.2","rc-tabs":"~5.5.0","rc-time-picker":"~1.0.0","rc-tooltip":"~3.3.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-copy-to-clipboard":"^3.0.4","react-dom":"~0.14.2","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"e2fe1d5c3dce24bd036f170e05dce93f7e7edc37","_id":"antd@0.11.0-beta4","_shasum":"858465c126bed8088ff945f082eebba3ed1ba673","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"858465c126bed8088ff945f082eebba3ed1ba673","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.0-beta4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.11.0-beta5":{"name":"antd","version":"0.11.0-beta5","stableVersion":"0.10.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.0.2","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.4","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.7.0","rc-tabs":"~5.5.0","rc-time-picker":"~1.0.0","rc-tooltip":"~3.3.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-copy-to-clipboard":"^3.0.4","react-dom":"~0.14.2","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"aa3c703c18335411309430c6c0f3908064932a01","_id":"antd@0.11.0-beta5","_shasum":"9ac3115bddee7fc2b104364a4b02dd04b7b83cc7","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"9ac3115bddee7fc2b104364a4b02dd04b7b83cc7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.0-beta5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.11.0-beta6":{"name":"antd","version":"0.11.0-beta6","stableVersion":"0.10.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.1.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.4","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.7.0","rc-tabs":"~5.5.0","rc-time-picker":"~1.0.0","rc-tooltip":"~3.3.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-copy-to-clipboard":"^3.0.4","react-dom":"~0.14.2","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"ac337976be4a93679ba57d906513f3c87ac8ed4a","_id":"antd@0.11.0-beta6","_shasum":"6b3e30c55363d45f9e30ac261ce94eafa1acc69e","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"6b3e30c55363d45f9e30ac261ce94eafa1acc69e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.0-beta6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.11.0":{"name":"antd","version":"0.11.0","stableVersion":"0.10.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.4","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.7.0","rc-tabs":"~5.5.0","rc-time-picker":"~1.0.0","rc-tooltip":"~3.3.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-copy-to-clipboard":"^3.0.4","react-dom":"~0.14.2","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"e25a6fa583ce16ea41681d25a14ba9ce24922b10","_id":"antd@0.11.0","_shasum":"d21c34a37e117c3b705c74f1b2d5df196c9347a1","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d21c34a37e117c3b705c74f1b2d5df196c9347a1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.11.1":{"name":"antd","version":"0.11.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.4","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.7.1","rc-tabs":"~5.5.0","rc-time-picker":"~1.0.0","rc-tooltip":"~3.3.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-copy-to-clipboard":"^3.0.4","react-dom":"~0.14.2","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"0ee47a3538245ccf211fe533e22eb01c3e82c5ae","_id":"antd@0.11.1","_shasum":"879325d61335cfd40c7ffc826bbea7410b65eec3","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.3.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"879325d61335cfd40c7ffc826bbea7410b65eec3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.11.2":{"name":"antd","version":"0.11.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.4","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.7.1","rc-tabs":"~5.5.0","rc-time-picker":"~1.0.0","rc-tooltip":"~3.3.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"6cfc8be796b610a6996db860f759abfca0536a1e","_id":"antd@0.11.2","_shasum":"a582fdbdd6db4dd6582930bb56751c7d4e9a1cff","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"a582fdbdd6db4dd6582930bb56751c7d4e9a1cff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.10.5":{"name":"antd","version":"0.10.5","stableVersion":"0.10.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.0.1","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~4.0.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.3","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.8.1","rc-notification":"~1.3.0","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.1.2","rc-slider":"~3.1.2","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.6.2","rc-tabs":"~5.5.0","rc-time-picker":"~0.7.1","rc-tooltip":"~3.2.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","reqwest":"~2.0.5","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel":"^5.8.29","babel-core":"^5.8.29","babel-jest":"^5.3.0","babel-loader":"^5.3.2","busboy":"^0.2.9","chalk":"^1.1.0","clipboard":"^1.5.5","css-loader":"^0.23.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^2.1.1","eslint-plugin-markdown":"git+https://github.com/ant-design/eslint-plugin-markdown.git","eslint-plugin-react":"^3.3.1","expect.js":"~0.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.13.1","jest-cli":"~0.6.1","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint":"git+https://github.com/ant-design/lesshint.git","lodash":"^3.10.0","nico-jsx":"~0.6.0","pre-commit":"1.x","react":"~0.14.2","react-addons-test-utils":"~0.14.2","react-dom":"~0.14.2","react-router":"~1.0.0","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"gitHead":"f754c2f95bf1c0fb385e3b3347bcaf150e9257ed","_id":"antd@0.10.5","_shasum":"74896940ebf8439b54120701103c02ef50e52a17","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"74896940ebf8439b54120701103c02ef50e52a17","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.10.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.0-beta.10":{"name":"antd","version":"0.12.0-beta.10","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~0.26.1","rc-tree-select":"~0.3.3","rc-trigger":"~1.0.6","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.1.0","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"latest","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"0.0.5","rc-tween-one":"0.1.5","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"f743aa009b96bb4c4d7c939af23b65facdee0a31","_id":"antd@0.12.0-beta.10","_shasum":"f23e0bb7b06558e8e85a1fb9dac591ea6587d62e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"f23e0bb7b06558e8e85a1fb9dac591ea6587d62e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.10.tgz"},"directories":{}},"0.12.0-beta.11":{"name":"antd","version":"0.12.0-beta.11","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~0.26.1","rc-tree-select":"~0.3.3","rc-trigger":"~1.0.6","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.1.0","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"latest","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"0.0.5","rc-tween-one":"0.1.5","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"71a76806d2320fa43559dd210395c43795709308","_id":"antd@0.12.0-beta.11","_shasum":"4d483c39fd29879a6c5bcfde960e5b1cd8dfe16d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"4d483c39fd29879a6c5bcfde960e5b1cd8dfe16d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.11.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.12":{"name":"antd","version":"0.12.0-beta.12","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~0.26.1","rc-tree-select":"~0.3.3","rc-trigger":"~1.0.6","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"latest","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"0.0.5","rc-tween-one":"0.1.5","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"4bd34c4500f57268b7b514e5f0ce6ccd2dad4a78","_id":"antd@0.12.0-beta.12","_shasum":"f734415f89b24dd67d26b3a44caeaee2a6e4c8d0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"f734415f89b24dd67d26b3a44caeaee2a6e4c8d0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.12.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.13":{"name":"antd","version":"0.12.0-beta.13","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~0.26.1","rc-tree-select":"~0.3.3","rc-trigger":"~1.0.6","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"latest","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"0.0.5","rc-tween-one":"0.1.5","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"341ad18eb64edb14166d8093eb981de67c59046f","_id":"antd@0.12.0-beta.13","_shasum":"2a63d3d32bf909108b3d8d37155a3c79f58bbf81","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"2a63d3d32bf909108b3d8d37155a3c79f58bbf81","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.13.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.14":{"name":"antd","version":"0.12.0-beta.14","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"^1.0.2","rc-tree-select":"^1.0.1","rc-trigger":"~1.0.6","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"latest","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"0.0.5","rc-tween-one":"0.1.5","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"f4dad67454682d6276e79199e1b5a3a15e747553","_id":"antd@0.12.0-beta.14","_shasum":"5a39d4266b35e37d0ee6250be4005e91adbc01df","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"5a39d4266b35e37d0ee6250be4005e91adbc01df","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.14.tgz"},"directories":{}},"0.12.0-beta.15":{"name":"antd","version":"0.12.0-beta.15","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.2.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.0","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"latest","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"0.0.5","rc-tween-one":"0.1.5","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"af0bb31c6abcf6c97dbb6ff5b67efe3cab11de77","_id":"antd@0.12.0-beta.15","_shasum":"e538475b35a2861ac35da37506b1e314e2aafe43","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"e538475b35a2861ac35da37506b1e314e2aafe43","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.15.tgz"},"directories":{}},"0.11.3":{"name":"antd","version":"0.11.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-checkbox":"~1.1.1","rc-collapse":"~1.4.4","rc-dialog":"~5.2.2","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.4.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.7.1","rc-tabs":"~5.5.0","rc-time-picker":"~1.0.0","rc-tooltip":"~3.3.0","rc-tree":"~0.19.0","rc-trigger":"~1.0.6","rc-upload":"~1.7.0","rc-util":"~3.0.1","react-slick":"~0.9.1","semver":"~5.0.3","util-deprecate":"~1.0.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"rc-scroll-anim":"0.1.0","rc-tween-one":"0.1.8","autoprefixer-loader":"^3.1.0","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"^1.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown-antd":"0.0.0","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.5.0","history":"^1.17.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.0","nico-jsx":"~0.7.0","pre-commit":"1.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"eslint components test index.js --ext '.js,.jsx' && npm run mdlint && npm run lesshint","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"0e5187daf61498e08906c275e393579897b68496","_id":"antd@0.11.3","_shasum":"9e93addf633abdc2e79a12073d51fb5d3773627d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"9e93addf633abdc2e79a12073d51fb5d3773627d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.11.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.0-beta.16":{"name":"antd","version":"0.12.0-beta.16","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.0","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"^0.1.1","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"75cc1466c2b5250b29cf9fd995e94c1b6ce8863d","_id":"antd@0.12.0-beta.16","_shasum":"6c897a37829c116993fffeb029bf091050fe06ad","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"6c897a37829c116993fffeb029bf091050fe06ad","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.16.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.17":{"name":"antd","version":"0.12.0-beta.17","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.0","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"^0.1.1","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"4d228baa57e30ac7b4361bfaf6c89bffde8a2008","_id":"antd@0.12.0-beta.17","_shasum":"d139b00e4a930347cc161bf6a0304830afe28d8d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"d139b00e4a930347cc161bf6a0304830afe28d8d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.17.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.18":{"name":"antd","version":"0.12.0-beta.18","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.8.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.0","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"^0.1.1","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"c5a8e37ce6962e3e75bc4e147e48d0028d804290","_id":"antd@0.12.0-beta.18","_shasum":"fd48483dae5f772f55f8161d2729edb2d16725cb","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"fd48483dae5f772f55f8161d2729edb2d16725cb","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.18.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.19":{"name":"antd","version":"0.12.0-beta.19","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.0.4","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.9.0","rc-tabs":"~5.6.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.0","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-form":"^0.8.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.2.0"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"8cbc4aea416b45648bb1832724d3d9ce66a2ba8d","_id":"antd@0.12.0-beta.19","_shasum":"d9d536f19ece2f3687801b44b275af6fa25ce187","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"d9d536f19ece2f3687801b44b275af6fa25ce187","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.19.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.20":{"name":"antd","version":"0.12.0-beta.20","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.6.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.9.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.1","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.0","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.0","rc-upload":"~1.8.0","rc-util":"~3.0.1","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"fdd8dbf5e5dc2a7d6823785eccca7ef17eb4c454","_id":"antd@0.12.0-beta.20","_shasum":"07fcf9ddaeac119d767a8166b95050370cdad8f0","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"07fcf9ddaeac119d767a8166b95050370cdad8f0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.20.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.21":{"name":"antd","version":"0.12.0-beta.21","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.7.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.9.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"7e7b4b2cf7f50c260677ebfb74baddea79035f52","_id":"antd@0.12.0-beta.21","_shasum":"92ba991ca51e4899e415ff4cd7f6976f135c02b3","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"92ba991ca51e4899e415ff4cd7f6976f135c02b3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.21.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.22":{"name":"antd","version":"0.12.0-beta.22","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.7.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.9.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"35997f02563f4778ef5859c9aa8995f37914ab39","_id":"antd@0.12.0-beta.22","_shasum":"210cef1641d06c65f76d59ad7a2fefe060116f97","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"210cef1641d06c65f76d59ad7a2fefe060116f97","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.22.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.23":{"name":"antd","version":"0.12.0-beta.23","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.7.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.9.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"a35c0275514ad0b773e92da7d643080e007cd03e","_id":"antd@0.12.0-beta.23","_shasum":"ffd9bcfe5c202e169196a38e941fa65b8868c172","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"ffd9bcfe5c202e169196a38e941fa65b8868c172","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.23.tgz"},"directories":{}},"0.12.0-beta.24":{"name":"antd","version":"0.12.0-beta.24","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.9.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"d6ba326433e4ad94f766b579c210c0e3675aa426","_id":"antd@0.12.0-beta.24","_shasum":"1772ec37408f9260a8592eec7070c8d76909676b","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"1772ec37408f9260a8592eec7070c8d76909676b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.24.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.25":{"name":"antd","version":"0.12.0-beta.25","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.9.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"gitHead":"02c3a18f79170dc1276f9d54a851baa85ab61b6a","_id":"antd@0.12.0-beta.25","_shasum":"73efade7b19ff8cacf72274499d0cb2bccccad47","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"73efade7b19ff8cacf72274499d0cb2bccccad47","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.25.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.26":{"name":"antd","version":"0.12.0-beta.26","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"1.1.x","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.9.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"65b338de2b8eb4a3ca72c2e8f41b743422112ab9","_id":"antd@0.12.0-beta.26","_shasum":"5d40ce7b7eb693c0843b20aff8a4d29a94949bb2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"5d40ce7b7eb693c0843b20aff8a4d29a94949bb2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.26.tgz"},"directories":{}},"0.12.0-beta.27":{"name":"antd","version":"0.12.0-beta.27","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"821013ee47a98f5c7fd3895616ec545932df0842","_id":"antd@0.12.0-beta.27","_shasum":"11ae50b170dca03cea4637b4e57296fbd47fb534","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"11ae50b170dca03cea4637b4e57296fbd47fb534","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.27.tgz"},"directories":{}},"0.12.0-beta.28":{"name":"antd","version":"0.12.0-beta.28","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"df326bea67166613b55b2899c621edf5e39266c6","_id":"antd@0.12.0-beta.28","_shasum":"d3b45fe0fb7f06a635b4feea0c0da96240b2fbba","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"d3b45fe0fb7f06a635b4feea0c0da96240b2fbba","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.28.tgz"},"directories":{}},"0.12.0-beta.29":{"name":"antd","version":"0.12.0-beta.29","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.1","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.6.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint --fix components test index.js --ext '.js,.jsx'","mdlint":"eslint --fix components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"9c36b900bfe0fda6f719180c9924d5ce510a4659","_id":"antd@0.12.0-beta.29","_shasum":"a2c980f718e39099be131104f8827dcd12587904","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"a2c980f718e39099be131104f8827dcd12587904","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.29.tgz"},"directories":{}},"0.12.0-beta.30":{"name":"antd","version":"0.12.0-beta.30","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.1","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"f3a9050d3c56a3ca82c57ecbccdf675eb07561fa","_id":"antd@0.12.0-beta.30","_shasum":"508e824f9f45eefe4afe579893c76e70313ee7c8","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"508e824f9f45eefe4afe579893c76e70313ee7c8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.30.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.31":{"name":"antd","version":"0.12.0-beta.31","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.1","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.0.2","rc-tree-select":"~1.0.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.5.3","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"4ace891cd6b8e592e1c8e9e026cbb1fd1f2ca820","_id":"antd@0.12.0-beta.31","_shasum":"682198b40d3edec07e5ddd6666975c00df59dc7e","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"682198b40d3edec07e5ddd6666975c00df59dc7e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.31.tgz"},"directories":{}},"0.12.0-beta.32":{"name":"antd","version":"0.12.0-beta.32","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.1","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"a1751b5f5530fb50c4c78d72582b443548bfdc6f","_id":"antd@0.12.0-beta.32","_shasum":"e9bace7970f3feebe4a96b5b8cb5a8aff1c4439d","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"e9bace7970f3feebe4a96b5b8cb5a8aff1c4439d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.32.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0-beta.33":{"name":"antd","version":"0.12.0-beta.33","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.1","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"ba78fbf0340a49cd43f50514b3e9b94534d8f825","_id":"antd@0.12.0-beta.33","_shasum":"d22c8800d65febf521c222b62f5b51de19742b03","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"d22c8800d65febf521c222b62f5b51de19742b03","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.33.tgz"},"directories":{}},"0.12.0-beta.34":{"name":"antd","version":"0.12.0-beta.34","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.1","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"e5b023a7ac52ad48e964cc636f8df89f82768b4d","_id":"antd@0.12.0-beta.34","_shasum":"7735f4f642b6e60f83b112bc2e7349e419c56850","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"7735f4f642b6e60f83b112bc2e7349e419c56850","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0-beta.34.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"directories":{}},"0.12.0":{"name":"antd","version":"0.12.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.1","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.10.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.9.0","rc-notification":"~1.3.1","rc-pagination":"~1.3.5","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^0.9.1","gh-pages":"^0.8.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^3.10.1","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^3.0.4","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"d037290eab4bf58ebfbb0b9f06a24ceffb75955f","_id":"antd@0.12.0","_shasum":"9c04edf60e2e40ff642073487fc5249c73381690","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.5.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9c04edf60e2e40ff642073487fc5249c73381690","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.1":{"name":"antd","version":"0.12.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.3.0","rc-cascader":"~0.8.1","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.12.1","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.4.0","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"~0.9.1","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.7.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"~1.0.3","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"ed3ba953f2d6bd3a1821e130c700f6801ca760d4","_id":"antd@0.12.1","_shasum":"c39d97e816b74c59b6d7ef7f97254da54c2b1743","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"c39d97e816b74c59b6d7ef7f97254da54c2b1743","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-9-west.internal.npmjs.com","tmp":"tmp/antd-0.12.1.tgz_1454507947387_0.03837424097582698"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.2":{"name":"antd","version":"0.12.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.13.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.4.0","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.10.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"e71d562ce57355ccc33bf8de97bce11acbe1e528","_id":"antd@0.12.2","_shasum":"6cd951c5fdb2414132fd87dbdde2bd9d99482e08","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"6cd951c5fdb2414132fd87dbdde2bd9d99482e08","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/antd-0.12.2.tgz_1455853377064_0.9579784802626818"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.3":{"name":"antd","version":"0.12.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.2.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.13.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.4.0","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.9.0","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.10.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^1.1.0","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^3.3.1","eslint-tinker":"~0.2.0","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0,eol-last: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"01d6df7de0a6d890724b7da9e5cf99b2b44f20ba","_id":"antd@0.12.3","_shasum":"3b58975416fd558e1d27c62d2e0dc5eb43ee8087","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"3b58975416fd558e1d27c62d2e0dc5eb43ee8087","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/antd-0.12.3.tgz_1455874345386_0.3407353067304939"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.4":{"name":"antd","version":"0.12.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.13.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.4.0","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.10.1","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.10.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"c3014c26a135db7ebaa8f3d80870dfe48b59ef57","_id":"antd@0.12.4","_shasum":"1d4ad0b15085d692b49ed78c10e5feec4f486ef4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"1d4ad0b15085d692b49ed78c10e5feec4f486ef4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/antd-0.12.4.tgz_1456157329068_0.7517469539307058"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.5":{"name":"antd","version":"0.12.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.3.1","rc-dropdown":"~1.4.3","rc-form":"~0.13.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.4.0","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.9.1","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.10.1","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.1.1","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.10.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"8fff871a7cb3e0f93032be414f50a6bd1d8093da","_id":"antd@0.12.5","_shasum":"1ccb5ece2edd695acd4ab6f63fccdb954498d9f5","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"1ccb5ece2edd695acd4ab6f63fccdb954498d9f5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/antd-0.12.5.tgz_1456414778962_0.18793552555143833"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.6":{"name":"antd","version":"0.12.6","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"d68f36a422e61575c2cbdc9de9676f390a4521c9","_id":"antd@0.12.6","_shasum":"6b5e6cafb99f4e3626f87f9bbbc4462a646dcef4","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"6b5e6cafb99f4e3626f87f9bbbc4462a646dcef4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-0.12.6.tgz_1456931997440_0.599833907559514"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.7":{"name":"antd","version":"0.12.7","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.4.1","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.1.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"7d151514e3872177eeebc07bbb2662920c2dcaee","_id":"antd@0.12.7","_shasum":"fb1522f8296d6af38677be32d395bd3dc2431f4c","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"fb1522f8296d6af38677be32d395bd3dc2431f4c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-0.12.7.tgz_1456933446283_0.023467490216717124"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.8":{"name":"antd","version":"0.12.8","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.2.2","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"5386afaf86b4eaf97003db05b27658965c591fc5","_id":"antd@0.12.8","_shasum":"263a8e228e1b6bd2f086c0b4edb366c4f397fe48","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"263a8e228e1b6bd2f086c0b4edb366c4f397fe48","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.8.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/antd-0.12.8.tgz_1457195041718_0.6931613329797983"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.10":{"name":"antd","version":"0.12.10","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.2.2","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint-antd":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"b9c97ca07f5531ae2f3a2a1da9693276dd20f328","_id":"antd@0.12.10","_shasum":"b651283c8a6d64fc147614b355d8706956b2fc0c","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"b651283c8a6d64fc147614b355d8706956b2fc0c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.10.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/antd-0.12.10.tgz_1457690290579_0.24154351162724197"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.11-beta":{"name":"antd","version":"0.12.11-beta","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.7.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.4.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.9.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.8.2","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"0e9edf7a12e8108628bbac9f8466290d924615f4","_id":"antd@0.12.11-beta","_shasum":"0f85056774ceeb1f89824f67b409f62409213adf","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"0f85056774ceeb1f89824f67b409f62409213adf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.11-beta.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-0.12.11-beta.tgz_1457946808343_0.04736396321095526"},"directories":{}},"0.12.11":{"name":"antd","version":"0.12.11","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.4.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.11.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.9.0","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"19c5c4e7875d16aa0bba67422b087f51e3f60985","_id":"antd@0.12.11","_shasum":"e2775a392e52bb7c6558c2720729cf84dbd99b00","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"e2775a392e52bb7c6558c2720729cf84dbd99b00","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.11.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-0.12.11.tgz_1458118070034_0.05779766570776701"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.12":{"name":"antd","version":"0.12.12","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.4.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.11.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.9.0","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"e1c2e3f1a35e3c66f95e804fecec9610ddf39ad0","_id":"antd@0.12.12","_shasum":"4908b4dde570288c497c658b936e7c8e0788b01a","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"4908b4dde570288c497c658b936e7c8e0788b01a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.12.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/antd-0.12.12.tgz_1458289744514_0.7625323315151036"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.13":{"name":"antd","version":"0.12.13","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.4.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.11.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.9.0","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"4738cde433d49c236c9ffb8343aca806154db8e6","_id":"antd@0.12.13","_shasum":"91c39b9c7c117f3e8e0c6f093c69722bd33db717","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"91c39b9c7c117f3e8e0c6f093c69722bd33db717","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.13.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-0.12.13.tgz_1459230395790_0.8836286936420947"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"1.0.0-beta":{"name":"antd","version":"1.0.0-beta","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.5.0","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-rate":"~1.1.0","rc-select":"~6.0.1","rc-slider":"~3.5.1","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~4.0.0-beta.3","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.5.0","rc-trigger":"~1.3.0","rc-upload":"~1.10.0","rc-util":"~3.1.2","react-slick":"~0.11.0","warning":"~2.1.0"},"devDependencies":{"antd-md-loader":"0.1.0-beta.18","atool-build":"^0.6.5","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.0-beta.6","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","cz-conventional-changelog":"^1.1.5","dom-scroll-into-view":"^1.1.0","dora":"^0.3.1","dora-plugin-hmr":"^0.5.0","dora-plugin-webpack":"^0.6.2","enquire.js":"^2.1.1","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","gh-pages":"^0.11.0","highlight.js":"^9.2.0","history":"^1.17.0","jest-cli":"~0.8.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","mkdirp":"~0.5.1","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.19.1","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","react-sublime-video":"0.1.0-beta","reqwest":"~2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"babel":"babel components index.js --out-dir lib","clean-build":"rm -rf _site _data && ./scripts/build-website.js","dora":"ANTD=WEBSITE dora -p 8001 --plugins webpack?disableNpmInstall,hmr","start":"npm run clean-build && npm run dora","copy-html":"cp ./index.html ./_site/index.html && mkdir ./_site/_site && mv ./_site/demo-* ./_site/_site","site":"npm run clean-build && ANTD=WEBSITE atool-build -o ./_site && npm run copy-html && ANTD=PRODUCTION atool-build && cp -R dist _site/dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"ANTD=SRC eslint components test site index.js --ext '.js,.jsx'","demolint":"ANTD=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && atool-build && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"313c3177c0b41c4ea0a7f369b1fc422b2f7b1502","_id":"antd@1.0.0-beta","_shasum":"dcb499586ee0afc0e36c55aae4602ff9c4db8c4d","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"dcb499586ee0afc0e36c55aae4602ff9c4db8c4d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.tgz_1459503598617_0.3332590665668249"},"directories":{}},"1.0.0-beta.0":{"name":"antd","version":"1.0.0-beta.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.5.0","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-rate":"~1.1.0","rc-select":"~6.0.1","rc-slider":"~3.5.1","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~4.0.0-beta.3","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.5.0","rc-trigger":"~1.3.0","rc-upload":"~1.10.0","rc-util":"~3.1.2","react-slick":"~0.11.0","warning":"~2.1.0"},"devDependencies":{"antd-md-loader":"0.1.0-beta.18","atool-build":"^0.6.5","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.0-beta.6","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","cz-conventional-changelog":"^1.1.5","dom-scroll-into-view":"^1.1.0","dora":"^0.3.1","dora-plugin-hmr":"^0.5.0","dora-plugin-webpack":"^0.6.2","enquire.js":"^2.1.1","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","gh-pages":"^0.11.0","highlight.js":"^9.2.0","history":"^1.17.0","jest-cli":"~0.8.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","mkdirp":"~0.5.1","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.19.1","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","react-sublime-video":"0.1.0-beta","reqwest":"~2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"babel":"babel components index.js --out-dir lib","clean-build":"rm -rf _site _data && ./scripts/build-website.js","dora":"ANTD=WEBSITE dora -p 8001 --plugins webpack?disableNpmInstall,hmr","start":"npm run clean-build && npm run dora","copy-html":"cp ./index.html ./_site/index.html && mkdir ./_site/_site && mv ./_site/demo-* ./_site/_site","site":"npm run clean-build && ANTD=WEBSITE atool-build -o ./_site && npm run copy-html && ANTD=PRODUCTION atool-build && cp -R dist _site/dist","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"ANTD=SRC eslint components test site index.js --ext '.js,.jsx'","demolint":"ANTD=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && atool-build && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"93220a39f958bcd88f1443196c25159590c191dd","_id":"antd@1.0.0-beta.0","_shasum":"926cdb0d196d40b71ba41111c74fb825af57d68a","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"926cdb0d196d40b71ba41111c74fb825af57d68a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.0.tgz_1459504404486_0.3543828020337969"},"directories":{}},"1.0.0-beta.1":{"name":"antd","version":"1.0.0-beta.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["dist","!dist/common.js","lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.2","rc-calendar":"~5.5.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.5.0","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.3","rc-form":"~0.15.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-rate":"~1.1.0","rc-select":"~6.0.1","rc-slider":"~3.5.1","rc-steps":"~1.5.2","rc-switch":"~1.4.0","rc-table":"~4.0.0-beta.3","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.2","rc-tree":"~1.2.0","rc-tree-select":"~1.5.0","rc-trigger":"~1.4.0","rc-upload":"~1.10.0","rc-util":"~3.1.2","react-slick":"~0.11.0","warning":"~2.1.0"},"devDependencies":{"antd-md-loader":"~0.4.0","atool-build":"^0.6.5","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.2","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-plugin-antd":"^0.3.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","cz-conventional-changelog":"^1.1.5","dom-scroll-into-view":"^1.1.0","dora":"^0.3.1","dora-plugin-hmr":"^0.5.0","dora-plugin-webpack":"^0.6.2","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","gh-pages":"^0.11.0","history":"^1.17.0","jest-cli":"~0.8.0","jsonml-to-react-component":"~0.1.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","mkdirp":"~0.5.1","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.19.1","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","react-sublime-video":"0.1.0-beta","reqwest":"~2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"babel":"babel components index.js --out-dir lib","clean-build":"rm -rf _site _data && ./scripts/build-website.js","dora":"ANTD=WEBSITE dora -p 8001 --plugins webpack?disableNpmInstall,hmr","start":"npm run clean-build && npm run dora","copy-html":"cp ./index.html ./_site/index.html && mkdir ./_site/_site && mv ./_site/demo-* ./_site/_site","site":"npm run clean-build && ANTD=WEBSITE atool-build -o ./_site && npm run copy-html","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"ANTD=SRC eslint components test site index.js --ext '.js,.jsx'","demolint":"ANTD=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && atool-build && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"26f365df369553282bd564b44f61a23881bb9257","_id":"antd@1.0.0-beta.1","_shasum":"cf068d89730c7a505f0b88798564dee4124e8271","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"cf068d89730c7a505f0b88798564dee4124e8271","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.1.tgz_1460110770684_0.2558114491403103"},"directories":{}},"1.0.0-beta.2":{"name":"antd","version":"1.0.0-beta.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["dist","lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.2","rc-calendar":"~5.5.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.5.0","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.3","rc-form":"~0.15.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-rate":"~1.1.0","rc-select":"~6.0.1","rc-slider":"~3.5.1","rc-steps":"~1.5.2","rc-switch":"~1.4.0","rc-table":"~4.0.0-beta.3","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.2","rc-tree":"~1.2.0","rc-tree-select":"~1.5.0","rc-trigger":"~1.4.0","rc-upload":"~1.10.0","rc-util":"~3.1.2","react-slick":"~0.11.0","warning":"~2.1.0"},"devDependencies":{"antd-md-loader":"~0.4.0","atool-build":"^0.6.5","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.2","babel-jest":"^10.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-plugin-antd":"^0.3.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","cz-conventional-changelog":"^1.1.5","dom-scroll-into-view":"^1.1.0","dora":"^0.3.1","dora-plugin-hmr":"^0.5.0","dora-plugin-webpack":"^0.6.2","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","gh-pages":"^0.11.0","history":"^2.0.1","jest-cli":"^0.10.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","mkdirp":"~0.5.1","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.20.1","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.1.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"babel":"babel components index.js --out-dir lib","clean-build":"rm -rf _site _data && ./scripts/build-website.js","dora":"ANTD=WEBSITE dora -p 8001 --plugins webpack?disableNpmInstall,hmr","start":"npm run clean-build && npm run dora","copy-html":"cp ./index.html ./_site/index.html && mkdir ./_site/_site && mv ./_site/demo-* ./_site/_site","site":"npm run clean-build && ANTD=WEBSITE atool-build -o ./_site && npm run copy-html","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"ANTD=SRC eslint components test site index.js --ext '.js,.jsx'","demolint":"ANTD=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && atool-build && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"d9c0318c193c9dd56ff560191034aba349808067","_id":"antd@1.0.0-beta.2","_shasum":"d2c28db144148dfc24e4b3d908707df9f37a491d","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"d2c28db144148dfc24e4b3d908707df9f37a491d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.2.tgz_1460451421960_0.9076952135656029"},"directories":{}},"0.12.14":{"name":"antd","version":"0.12.14","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.1.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.4.4","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.4.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.2","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.11.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.9.0","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"f08331dae5957830bca5f1c83a6581991de7b7be","_id":"antd@0.12.14","_shasum":"a81cef9dec794e5612200e733bf0f18971f92882","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"a81cef9dec794e5612200e733bf0f18971f92882","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.14.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-0.12.14.tgz_1460537809612_0.8127736444585025"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"1.0.0-beta.3":{"name":"antd","version":"1.0.0-beta.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["dist","lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.0","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.2","rc-calendar":"~5.5.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.5.0","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.3","rc-form":"~0.15.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-rate":"~1.1.0","rc-select":"~6.0.1","rc-slider":"~3.5.1","rc-steps":"~2.0.0","rc-switch":"~1.4.0","rc-table":"~4.0.0-beta.3","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.2","rc-tree":"~1.2.0","rc-tree-select":"~1.5.0","rc-trigger":"~1.4.0","rc-upload":"~1.10.0","rc-util":"~3.1.2","react-slick":"~0.11.0","warning":"~2.1.0"},"devDependencies":{"antd-md-loader":"~0.5.0","atool-build":"^0.6.5","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.2","babel-jest":"^11.0.0","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-plugin-antd":"^0.3.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","cz-conventional-changelog":"^1.1.5","dom-scroll-into-view":"^1.1.0","dora":"^0.3.1","dora-plugin-hmr":"^0.5.0","dora-plugin-webpack":"^0.6.2","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","gh-pages":"^0.11.0","history":"^2.0.1","jest-cli":"^11.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","mkdirp":"~0.5.1","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.20.1","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.1.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"babel":"babel components index.js --out-dir lib","clean-build":"rm -rf _site _data && ./scripts/build-website.js","dora":"ANTD=WEBSITE dora -p 8001 --plugins webpack?disableNpmInstall,hmr","start":"npm run clean-build && npm run dora","copy-html":"cp ./index.html ./_site/index.html && mkdir ./_site/_site && mv ./_site/demo-* ./_site/_site","site":"npm run clean-build && ANTD=WEBSITE atool-build -o ./_site && npm run copy-html","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"ANTD=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"ANTD=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && atool-build && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"357ccc6fd8aea961285549245b6902e02dd27da3","_id":"antd@1.0.0-beta.3","_shasum":"23fd866854cf740c878cfcd6aa3c84e27bec8644","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"23fd866854cf740c878cfcd6aa3c84e27bec8644","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.3.tgz_1460888898323_0.35559426760300994"},"directories":{}},"0.12.15":{"name":"antd","version":"0.12.15","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.6.0","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.4.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.2","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.11.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.9.0","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"69f7c4507a72472a0a8501dedf245710703df753","_id":"antd@0.12.15","_shasum":"fea4dd9cfc12caa615bc1bc07d138767958d2b75","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"fea4dd9cfc12caa615bc1bc07d138767958d2b75","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.15.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-0.12.15.tgz_1461213309553_0.4522182121872902"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"0.12.16":{"name":"antd","version":"0.12.16","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.6.0","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.1","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.4.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.2","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.11.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.9.0","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"b988dd940bc2d5d0949c329cf4cabb057482f008","_id":"antd@0.12.16","_shasum":"d1aa1b04e5facdeb56b5a39432a95523eac54b33","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"d1aa1b04e5facdeb56b5a39432a95523eac54b33","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.16.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-0.12.16.tgz_1461749174606_0.6462680224794894"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"1.0.0-beta.4":{"name":"antd","version":"1.0.0-beta.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["dist","lib","style","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.2","rc-calendar":"~5.5.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.6.0","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.3","rc-form":"~0.15.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-rate":"~1.1.0","rc-select":"~6.2.3","rc-slider":"~3.5.1","rc-steps":"~2.0.0","rc-switch":"~1.4.0","rc-table":"~4.0.0","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.5.0","rc-upload":"~1.10.0","rc-util":"~3.1.2","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-md-loader":"~0.7.0","atool-build":"^0.6.5","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.2","babel-jest":"^11.0.0","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-plugin-antd":"^0.3.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","cz-conventional-changelog":"^1.1.5","dom-scroll-into-view":"^1.1.0","dora":"^0.3.1","dora-plugin-hmr":"^0.5.0","dora-plugin-webpack":"^0.6.2","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^7.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-jsx-a11y":"^0.6.2","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","gh-pages":"^0.11.0","history":"^2.0.1","jest-cli":"^11.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","mkdirp":"~0.5.1","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"babel":"babel components index.js --out-dir lib","clean-build":"rm -rf _site _data && ./scripts/build-website.js","dora":"RUN_ENV=WEBSITE dora -p 8001 --plugins webpack?disableNpmInstall,hmr","start":"npm run clean-build && npm run dora","copy-html":"cp ./index.html ./_site/index.html && mkdir ./_site/_site && mv ./_site/demo-* ./_site/_site","site":"npm run clean-build && RUN_ENV=WEBSITE atool-build -o ./_site && npm run copy-html","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && atool-build && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"7bd22aeff90a2e3cb8fe31e26912acbe611039d2","_id":"antd@1.0.0-beta.4","_shasum":"9b23c7410445c0db9e0e9de691d25a80615a3baa","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"9b23c7410445c0db9e0e9de691d25a80615a3baa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.4.tgz_1461751969750_0.6285037531051785"},"directories":{}},"1.0.0-beta.5":{"name":"antd","version":"1.0.0-beta.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.11.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.2.3","rc-slider":"~3.6.0","rc-steps":"~2.0.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.4.5","rc-upload":"~1.10.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"~0.2.3","babel-eslint":"^6.0.2","babel-jest":"^11.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^7.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-jsx-a11y":"^0.6.2","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","jest-cli":"^11.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components/style -e 'components/style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pub":"antd-tools run pub","beta":"antd-tools run beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"f873d32c578e553b8a7e723bc53c9dcb329e3b47","_id":"antd@1.0.0-beta.5","_shasum":"8250e9c3ffa5533dbac553b9eb2f369a5e55432c","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"dist":{"shasum":"8250e9c3ffa5533dbac553b9eb2f369a5e55432c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.5.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.5.tgz_1461764806646_0.7809680616483092"},"directories":{}},"1.0.0-beta.6":{"name":"antd","version":"1.0.0-beta.6","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.11.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.3.0","rc-slider":"~3.6.0","rc-steps":"~2.1.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.4.5","rc-upload":"~1.10.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"~0.3.0","babel-eslint":"^6.0.2","babel-jest":"^11.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^7.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-jsx-a11y":"^0.6.2","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","jest-cli":"^11.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components/style -e 'components/style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","pub":"antd-tools run pub","beta":"antd-tools run beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"ce123137e36fb16040e2ee6cd75be7f56238a538","_id":"antd@1.0.0-beta.6","_shasum":"cfd4d0f4cb215e617aca8e2e9e1318a32d00e9c6","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"cfd4d0f4cb215e617aca8e2e9e1318a32d00e9c6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.6.tgz_1461899721840_0.5323959426023066"},"directories":{}},"1.0.0-beta.7":{"name":"antd","version":"1.0.0-beta.7","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.11.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.3.0","rc-slider":"~3.6.0","rc-steps":"~2.1.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.4.5","rc-upload":"~1.10.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"~0.3.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components/style -e 'components/style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","pub":"antd-tools run pub","beta":"antd-tools run beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"54045fc7c2db0ed6ebe5524f704acedb5811c55e","_id":"antd@1.0.0-beta.7","_shasum":"bbe9cffcaa57b2de9dd0694f85dee63dacfb9b5d","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"bbe9cffcaa57b2de9dd0694f85dee63dacfb9b5d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.7.tgz_1461915154285_0.2095409925095737"},"directories":{}},"1.0.0-beta.8":{"name":"antd","version":"1.0.0-beta.8","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.12.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.3.0","rc-slider":"~3.6.0","rc-steps":"~2.1.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.4.5","rc-upload":"~1.11.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.5.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","pub":"antd-tools run pub","beta":"antd-tools run beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"2120f35c32003d609b71e34960ddff718644e88a","_id":"antd@1.0.0-beta.8","_shasum":"d13e63213b6cf407ab5ae848e4471ed27937b628","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"d13e63213b6cf407ab5ae848e4471ed27937b628","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.8.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.8.tgz_1462432791021_0.9663457861170173"},"directories":{}},"0.12.17":{"name":"antd","version":"0.12.17","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index","files":["lib","style"],"license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.0.1","rc-animate":"~2.0.2","rc-calendar":"~5.4.0","rc-cascader":"~0.9.0","rc-checkbox":"~1.3.0","rc-collapse":"~1.6.0","rc-dialog":"~5.4.0","rc-dropdown":"~1.4.3","rc-form":"~0.14.0","rc-form-validation":"~2.5.0","rc-input-number":"~2.5.0","rc-menu":"~4.10.2","rc-notification":"~1.3.1","rc-pagination":"~1.5.1","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.2","rc-radio":"~2.0.0","rc-select":"~5.10.0","rc-slider":"~3.3.0","rc-steps":"~1.4.1","rc-switch":"~1.3.2","rc-table":"~3.11.4","rc-tabs":"~5.8.0","rc-time-picker":"~1.1.0","rc-tooltip":"~3.3.1","rc-tree":"~1.1.0","rc-tree-select":"~1.4.1","rc-trigger":"~1.2.0","rc-upload":"~1.8.0","rc-util":"~3.1.2","react-slick":"^0.11.0","velocity-animate":"~1.2.2","warning":"~2.1.0"},"devDependencies":{"autoprefixer":"^6.3.3","babel-cli":"^6.2.0","babel-core":"^6.2.1","babel-eslint":"^6.0.2","babel-jest":"^6.0.1","babel-loader":"^6.2.0","babel-plugin-add-module-exports":"^0.1.1","babel-preset-es2015":"^6.1.18","babel-preset-react":"^6.1.18","babel-preset-react-hmre":"^1.1.0","babel-preset-stage-0":"^6.1.18","busboy":"^0.2.9","chalk":"^1.1.0","css-loader":"^0.23.0","cz-conventional-changelog":"^1.1.5","es3ify-loader":"^0.1.0","eslint":"^2.2.0","eslint-config-airbnb":"^6.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-markdown":"*","eslint-plugin-react":"^4.0.0","eslint-tinker":"^0.3.1","extract-text-webpack-plugin":"^1.0.1","gh-pages":"^0.11.0","history":"^1.17.0","instantclick":"^3.1.0","jest-cli":"~0.8.0","json-loader":"^0.5.1","jsonp":"^0.2.0","less":"~2.6.0","less-loader":"^2.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","nico-jsx":"~0.9.0","postcss-loader":"^0.8.0","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"^0.1.7","rc-tween-one":"^0.1.8","react":"0.14.x","react-addons-test-utils":"0.14.x","react-copy-to-clipboard":"^4.0.1","react-dom":"0.14.x","react-router":"^2.0.0","react-stateless-wrapper":"~1.0.2","reqwest":"~2.0.5","semver":"^5.1.0","values.js":"^1.0.3","webpack":"^1.10.1","webpack-babel-jest":"^1.0.0","webpack-dev-middleware":"^1.5.1","webpack-hot-middleware":"^2.6.4"},"scripts":{"babel":"babel components index.js --out-dir lib","start":"npm run clean && nico server --watch","clean":"rm -rf _site dist","site":"npm run clean && webpack --config webpack.deploy.config.js && webpack --config webpack.antd.config.js && NODE_ENV=PRODUCTION nico build","deploy":"rm -rf node_modules && node scripts/install.js && npm run just-deploy","just-deploy":"npm run site && node scripts/deploy.js","lint":"npm run srclint && npm run mdlint && npm run lesshint","srclint":"eslint components test index.js --ext '.js,.jsx'","mdlint":"eslint components/*/demo/*.md --ext '.md' --global 'React,ReactDOM,mountNode' --rule 'no-console: 0, eol-last: 0, prefer-rest-params: 0'","lesshint":"lesshint style/ -e 'style/+(core|mixins)/+(base|iconfont|normalize|layouts|compatibility|grid).less'","eslint-fix":"eslint --fix components test index.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && webpack && npm run jest","jest":"jest","pub":"sh ./scripts/publish.sh","webpack":"webpack","beta":"sh ./scripts/publish.sh --tag beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"testRunner":"<rootDir>/node_modules/jest-cli/src/testRunners/jasmine/jasmine2","moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"testPathIgnorePatterns":["/node_modules/","/_site/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests","preprocessCachingDisabled":false},"pre-commit":["lint"],"babel":{"presets":["es2015","react","stage-0"],"plugins":["add-module-exports"]},"config":{"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"gitHead":"b0774a7d189a5ea60e58498ac75bd9fd2ddbc359","_id":"antd@0.12.17","_shasum":"429b807f7d907ce12a22a74900718944502442d6","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"429b807f7d907ce12a22a74900718944502442d6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-0.12.17.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-0.12.17.tgz_1462434763485_0.6560287594329566"},"deprecated":"antd@<1.0.0 is depreacated, please upgrade to the latest version ASAP","directories":{}},"1.0.0-beta.9":{"name":"antd","version":"1.0.0-beta.9","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.12.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.3.0","rc-slider":"~3.6.0","rc-steps":"~2.1.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.4.5","rc-upload":"~1.11.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.5.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","pub":"antd-tools run pub","beta":"antd-tools run beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"7d55acbc044beb37179ae74d50ecfdbde8c0738e","_id":"antd@1.0.0-beta.9","_shasum":"3df8e885e1eb9df85c4598e99036bd4d2ddea2ce","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"3df8e885e1eb9df85c4598e99036bd4d2ddea2ce","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.9.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.9.tgz_1462438441294_0.04870960861444473"},"directories":{}},"1.0.0-beta.10":{"name":"antd","version":"1.0.0-beta.10","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.12.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.3.0","rc-slider":"~3.6.0","rc-steps":"~2.1.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.6.0","rc-upload":"~1.11.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.6.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^8.0.0","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash":"^4.1.0","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"0.2.x","rc-tween-one":"0.2.x","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","pub":"antd-tools run pub","beta":"antd-tools run beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"cd3904b43622ea4d144f4127977ac91b15929bd2","_id":"antd@1.0.0-beta.10","_shasum":"5dd8e0e4a4cfd836c7dfda677bc81cb016a88516","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"5dd8e0e4a4cfd836c7dfda677bc81cb016a88516","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0-beta.10.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.0.0-beta.10.tgz_1462862845971_0.7697660066187382"},"directories":{}},"1.0.0":{"name":"antd","version":"1.0.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.12.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.3.0","rc-slider":"~3.6.0","rc-steps":"~2.1.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.6.0","rc-upload":"~1.12.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.6.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","pub":"antd-tools run pub","beta":"antd-tools run beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"ffcd2624d786e10c04da7d3ef013c6a162c56868","_id":"antd@1.0.0","_shasum":"8b08bcf566877d08e8e3058d9a838c44ef8b96d5","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"8b08bcf566877d08e8e3058d9a838c44ef8b96d5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.0.tgz_1462901861673_0.6443628564011306"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.0.1":{"name":"antd","version":"1.0.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.12.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.3.0","rc-slider":"~3.6.0","rc-steps":"~2.1.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.6.0","rc-upload":"~1.12.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.6.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run update-self && antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run jest && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","pub":"antd-tools run update-self && antd-tools run pub","beta":"antd-tools run beta","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"5939962c90aedefc74604f4c479d4aa49a5e2897","_id":"antd@1.0.1","_shasum":"4be62eefd4177bed68b7e6617ced45997ab2f72b","_from":".","_npmVersion":"3.8.3","_nodeVersion":"5.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"4be62eefd4177bed68b7e6617ced45997ab2f72b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.0.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"},{"name":"zhujun24","email":"zhujun87654321@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.0.1.tgz_1462961056130_0.3777110888622701"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.1.0":{"name":"antd","version":"1.1.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"~1.2.3","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.0.3","rc-calendar":"~5.5.1","rc-cascader":"~0.9.8","rc-checkbox":"~1.3.4","rc-collapse":"~1.6.2","rc-dialog":"~6.0.1","rc-dropdown":"~1.4.8","rc-form":"~0.15.2","rc-input-number":"~2.5.8","rc-menu":"~4.12.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.2","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.3.0","rc-slider":"~3.6.0","rc-steps":"~2.1.0","rc-switch":"~1.4.1","rc-table":"~4.0.3","rc-tabs":"~5.9.0","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.0","rc-tree-select":"~1.6.0","rc-upload":"~1.12.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.7.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","deploy":"antd-tools run update-self && antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run jest && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"8eb9da7cf47adde7d6ef54c241e3a2b5db139bd3","_id":"antd@1.1.0","_shasum":"1dc388caf39a8f1030e93aaaecf78ea9a16212c5","_from":".","_npmVersion":"3.5.2","_nodeVersion":"5.1.0","_npmUser":{"name":"superraytin","email":"superRaytin@gmail.com"},"dist":{"shasum":"1dc388caf39a8f1030e93aaaecf78ea9a16212c5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.1.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.1.0.tgz_1463577085534_0.7410725473891944"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.2.0":{"name":"antd","version":"1.2.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.0.4","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.3.6","rc-collapse":"~1.6.3","rc-dialog":"~6.0.6","rc-dropdown":"~1.4.8","rc-form":"~0.16.0","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.6.2","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.0.6","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.12.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","pre-deploy":"cp CNAME _site && rsync -R components/*/demo/*.json _site","deploy":"antd-tools run update-self && antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run jest && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"b7f1c4077b5075e18cdd0572ecd305cd0564de65","_id":"antd@1.2.0","_shasum":"94621556bd3c57c3cdfd971276aa5fd97dafcb46","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"94621556bd3c57c3cdfd971276aa5fd97dafcb46","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.2.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.2.0.tgz_1464319205818_0.5298745990730822"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.2.1":{"name":"antd","version":"1.2.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","type-definitions"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.0.4","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.3.6","rc-collapse":"~1.6.3","rc-dialog":"~6.0.6","rc-dropdown":"~1.4.8","rc-form":"~0.16.0","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.6.2","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.0.6","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.12.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"antd-tools run start","site":"antd-tools run site","pre-deploy":"cp CNAME _site && rsync -R components/*/demo/*.json _site","deploy":"antd-tools run update-self && antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run jest && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"cb5b6543c42503cafc459ce14e121edeb4783b12","_id":"antd@1.2.1","_shasum":"92f78aabcb506db941428d30b64b90026a21dc09","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"92f78aabcb506db941428d30b64b90026a21dc09","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.2.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.2.1.tgz_1464344247649_0.7104656521696597"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.3.0":{"name":"antd","version":"1.3.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","nunjucks":"^2.4.2","rc-animate":"~2.0.4","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.3.6","rc-collapse":"~1.6.3","rc-dialog":"~6.0.6","rc-dropdown":"~1.4.8","rc-form":"~0.16.0","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.1.1","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~2.1.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.5.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"antd-tools run site","pre-deploy":"cp CNAME _site","deploy":"antd-tools run update-self && antd-tools run deploy","just-deploy":"antd-tools run just-deploy","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run jest && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"c8a1885b0d75d18c11aa326c235b5bd64045c043","_id":"antd@1.3.0","_shasum":"d7409debbaf31c50155a5273abd15a7954a662f7","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"d7409debbaf31c50155a5273abd15a7954a662f7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.3.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.3.0.tgz_1464880163707_0.6015206358861178"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.3.1":{"name":"antd","version":"1.3.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","nunjucks":"^2.4.2","rc-animate":"~2.0.4","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.3.6","rc-collapse":"~1.6.3","rc-dialog":"~6.0.6","rc-dropdown":"~1.4.8","rc-form":"~0.16.0","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.1.1","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.5.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run jest && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"d10639590b7c8ca9612620a5086d1a4b86bd0ca8","_id":"antd@1.3.1","_shasum":"5f800849f5c15443e16e1baa4625c734b055babd","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"5f800849f5c15443e16e1baa4625c734b055babd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.3.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.3.1.tgz_1465183108338_0.3631715103983879"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.3.2":{"name":"antd","version":"1.3.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","nunjucks":"^2.4.2","rc-animate":"~2.0.4","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.3.6","rc-collapse":"~1.6.3","rc-dialog":"~6.0.6","rc-dropdown":"~1.4.8","rc-form":"~0.16.0","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.1.1","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.5.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run jest && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"e051e8ae32a61e6174d76795fedb7cc3bc21b145","_id":"antd@1.3.2","_shasum":"1560272b18850fecf2ba902d92f5265175b539f6","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"1560272b18850fecf2ba902d92f5265175b539f6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.3.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.3.2.tgz_1465198651876_0.28453062381595373"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.4.0":{"name":"antd","version":"1.4.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","nunjucks":"^2.4.2","rc-animate":"~2.0.4","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.3.6","rc-collapse":"~1.6.3","rc-dialog":"~6.0.6","rc-dropdown":"~1.4.8","rc-form":"~0.16.0","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.1.4","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","react-addons-pure-render-mixin":"~15.1.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"9d68dbf0a5180c9b411fbee4b80c635f0e0c1c7e","_id":"antd@1.4.0","_shasum":"4e107f2940f0d04440b95d816f97dd222ceaa5d0","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"4e107f2940f0d04440b95d816f97dd222ceaa5d0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.4.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.4.0.tgz_1465783950163_0.28867848799563944"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.4.1":{"name":"antd","version":"1.4.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","nunjucks":"^2.4.2","rc-animate":"~2.0.4","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.3.6","rc-collapse":"~1.6.3","rc-dialog":"~6.0.6","rc-dropdown":"~1.4.8","rc-form":"~0.16.0","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.1.4","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","react-addons-pure-render-mixin":"~15.1.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dom-scroll-into-view":"^1.1.0","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0-beta","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"2d5e114257841a59fb7ccb48c05c0c736c6700bb","_id":"antd@1.4.1","_shasum":"c7d41b991d5a3097b0c360fcce5587ede6801f6e","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"c7d41b991d5a3097b0c360fcce5587ede6801f6e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.4.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.4.1.tgz_1465805940501_0.698905487312004"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.5.0":{"name":"antd","version":"1.5.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.1.0","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.0","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.2.0","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","react-addons-pure-render-mixin":"~15.1.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.1","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"7c34766ad0b8ca975aae5909f6db7b1cf6e24987","_id":"antd@1.5.0","_shasum":"3dd5e836052fe5d162dc221534c4060aedf4cf1b","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"3dd5e836052fe5d162dc221534c4060aedf4cf1b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.5.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.5.0.tgz_1466159387891_0.056740476517006755"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.5.1":{"name":"antd","version":"1.5.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.1.0","rc-calendar":"~5.5.4","rc-cascader":"~0.9.9","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.0","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.2.0","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","react-addons-pure-render-mixin":"~15.1.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.1","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"91ceb16473bdeec92b85e3ceeefd7745ca3e1a1d","_id":"antd@1.5.1","_shasum":"54dda33683a29f35a1be3f640b7800e72aa897ff","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"54dda33683a29f35a1be3f640b7800e72aa897ff","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.5.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.5.1.tgz_1466487478900_0.1611635892186314"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.6.0":{"name":"antd","version":"1.6.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.1.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.9","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.0","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.3.2","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","react-addons-pure-render-mixin":"~15.1.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.1","bisheng-plugin-antd":"0.1.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"bd5311c9081b0fb915b1ffa2541ed68dd68b5bb5","_id":"antd@1.6.0","_shasum":"8b024bb3e6c88a451fa07bcc00ebd1169e9121b1","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"8b024bb3e6c88a451fa07bcc00ebd1169e9121b1","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.6.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.6.0.tgz_1466747714314_0.3393263593316078"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.6.1":{"name":"antd","version":"1.6.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.1.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.9","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.0","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.3.2","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","react-addons-pure-render-mixin":"~15.1.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.1","bisheng-plugin-antd":"0.1.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"8a0a94721889c94974a247f719bd662d6efccbcd","_id":"antd@1.6.1","_shasum":"fcf7be775528bc20631e0c9ebc33ce9e12871649","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"fcf7be775528bc20631e0c9ebc33ce9e12871649","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.6.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.6.1.tgz_1466761899950_0.9306244810577482"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.6.2":{"name":"antd","version":"1.6.2","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.1.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.9","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.0","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.3.2","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","react-addons-pure-render-mixin":"~15.1.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.1","bisheng-plugin-antd":"0.1.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"faa66459835b05d695dd135f4a62777aa87954be","_id":"antd@1.6.2","_shasum":"463f1ee2b6007958bd3010b2bd03dd0829982ecc","_from":".","_npmVersion":"2.15.0","_nodeVersion":"4.4.2","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"463f1ee2b6007958bd3010b2bd03dd0829982ecc","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.6.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.6.2.tgz_1467010731582_0.06705186259932816"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.6.3":{"name":"antd","version":"1.6.3","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","normalize.css":"^4.1.1","rc-animate":"~2.1.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.9","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.0","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.10","rc-menu":"~4.12.3","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.9","rc-radio":"~2.0.0","rc-rate":"~1.1.1","rc-select":"~6.4.0","rc-slider":"~3.7.0","rc-steps":"~2.1.3","rc-switch":"~1.4.2","rc-table":"~4.3.2","rc-tabs":"~5.9.1","rc-time-picker":"~1.1.4","rc-tooltip":"~3.3.2","rc-tree":"~1.3.1","rc-tree-select":"~1.7.2","rc-upload":"~1.13.0","rc-util":"~3.1.3","react-slick":"~0.12.0","react-addons-pure-render-mixin":"~15.1.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.1","bisheng-plugin-antd":"0.1.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.8","rc-tween-one":"~0.3.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"c3949bb9b101b246d874fe05d14e7e26ab202bef","_id":"antd@1.6.3","_shasum":"d10fbf928bec7e295d20d2004b4ba83ab342ddf4","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"d10fbf928bec7e295d20d2004b4ba83ab342ddf4","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.6.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.6.3.tgz_1467600306566_0.616266343742609"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.6.4":{"name":"antd","version":"1.6.4","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.10","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.12","rc-menu":"~4.12.4","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.12","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~3.7.3","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.3.5","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.5","rc-tooltip":"~3.4.1","rc-tree":"~1.3.5","rc-tree-select":"~1.7.5","rc-upload":"~1.13.3","rc-util":"~3.1.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.12.0","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^12.0.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.1","bisheng-plugin-antd":"0.1.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^2.2.0","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^12.0.2","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.2.11","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"eb3853160de1e9fadd1680998130b4a53b64058a","_id":"antd@1.6.4","_shasum":"b222d21412d8d9d744bd9520826dea38c58c1445","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"b222d21412d8d9d744bd9520826dea38c58c1445","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.6.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.6.4.tgz_1467950036529_0.7086458869744092"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.6.5":{"name":"antd","version":"1.6.5","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.10","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.12","rc-menu":"~4.12.4","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.12","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~3.7.3","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.3.5","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.5","rc-tooltip":"~3.4.1","rc-tree":"~1.3.5","rc-tree-select":"~1.7.5","rc-upload":"~1.13.3","rc-util":"~3.1.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.12.0","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.7.1","bisheng-plugin-antd":"0.1.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.1.0","bisheng-plugin-toc":"0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^1.0.4","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^2.0.1","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^1.2.1","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"tnpm run clean && tnpm i && tnpm run just-deploy","just-deploy":"tnpm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"9f008d884358c6513faba8c5db325437c535c80d","_id":"antd@1.6.5","_shasum":"b2991b6e8f55547acceb5ee15c6ecd7c3eb43cfa","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"b2991b6e8f55547acceb5ee15c6ecd7c3eb43cfa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.6.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.6.5.tgz_1468660126917_0.05509162484668195"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.7.0":{"name":"antd","version":"1.7.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.10","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.12","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.12","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~3.7.3","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.4.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~1.13.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.12.0","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.9.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"c3d1803839da45d17ef8babe50a6f89cbee3ceb8","_id":"antd@1.7.0","_shasum":"959d0b22682aa5e30e0ece19f89587045b0d82ac","_from":".","_npmVersion":"3.8.9","_nodeVersion":"6.2.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"959d0b22682aa5e30e0ece19f89587045b0d82ac","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.7.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.7.0.tgz_1469844193625_0.7796937683597207"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.8.0":{"name":"antd","version":"1.8.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.10","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.5.12","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.11.12","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~3.7.3","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.4.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~1.13.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.12.0","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"7f5bc3813768dbfc70ed0a7b55c984f99efeabcf","_id":"antd@1.8.0","_shasum":"e9c3301fd33b53ad44ce242e8d73a61832fe1f7e","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.0","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"e9c3301fd33b53ad44ce242e8d73a61832fe1f7e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.8.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.8.0.tgz_1470625007569_0.6459363778121769"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.9.0":{"name":"antd","version":"1.9.0","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.10","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.4.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.12.0","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"180916386e17d896a7125aa0ded6f3752178176b","_id":"antd@1.9.0","_shasum":"00b1d2b7d2b21fe54e33e9ee8a83e5a524051a8d","_from":".","_npmVersion":"3.8.6","_nodeVersion":"6.0.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"00b1d2b7d2b21fe54e33e9ee8a83e5a524051a8d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.9.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.9.0.tgz_1471259886909_0.40640820283442736"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.9.1":{"name":"antd","version":"1.9.1","title":"Ant Design","description":"一个 UI 设计语言","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.9.10","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.4.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.12.0","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"cfba6aa60e20931475faec6040400427501e5903","_id":"antd@1.9.1","_shasum":"637049e163066c90b4b8f24ddb478c041f45067d","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"637049e163066c90b4b8f24ddb478c041f45067d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.9.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.9.1.tgz_1471334900956_0.5164828181732446"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.10.0":{"name":"antd","version":"1.10.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.4.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.12.0","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"07dd1d20891835f01b980888f2b74a877cf38c57","_id":"antd@1.10.0","_shasum":"5da35c73c7854fadb44329e090780aefbcd040bd","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"5da35c73c7854fadb44329e090780aefbcd040bd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.10.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.10.0.tgz_1471700396890_0.3956826739013195"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 1.11.x"},"1.11.0":{"name":"antd","version":"1.11.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.6.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"6c9ccd12d50adc2d8311fd5514046fa00bca25ae","_id":"antd@1.11.0","_shasum":"4da0162e3c3a62075d9c2c2663794bbc8ba4f365","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"4da0162e3c3a62075d9c2c2663794bbc8ba4f365","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.11.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.11.0.tgz_1472724846514_0.27817678544670343"},"directories":{}},"2.0.0-beta.0":{"name":"antd","version":"2.0.0-beta.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"^7.0.3","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.2.1","rc-dropdown":"~1.4.8","rc-editor-mention":"^0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.6.3","rc-menu":"^5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"^6.5.1","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~5.9.2","rc-time-picker":"^2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"8f980b4af987ff7e8c5d5fa91ecb9c985415e1cf","_id":"antd@2.0.0-beta.0","_shasum":"017e9c6c201eef1d33650d2cf803c135a3d4f2d3","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"017e9c6c201eef1d33650d2cf803c135a3d4f2d3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.0.tgz_1473408356590_0.035423147259280086"},"directories":{}},"2.0.0-beta.1":{"name":"antd","version":"2.0.0-beta.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"^7.0.3","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.2.1","rc-dropdown":"~1.4.8","rc-editor-mention":"^0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.6.3","rc-menu":"^5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"^6.5.1","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~5.9.2","rc-time-picker":"^2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"ab11f5e0927212b5d54f478100aea3dfab6bf88a","_id":"antd@2.0.0-beta.1","_shasum":"a5419bd2171d6dfe41f26a369ec390859ede9f53","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"a5419bd2171d6dfe41f26a369ec390859ede9f53","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.1.tgz_1473500268011_0.14463047310709953"},"directories":{}},"2.0.0-beta.2":{"name":"antd","version":"2.0.0-beta.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"^7.0.3","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.2.1","rc-dropdown":"~1.4.8","rc-editor-mention":"^0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.6.3","rc-menu":"^5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"^6.5.1","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~5.9.2","rc-time-picker":"^2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"7156083c7a3261f403c0f8ed542501c4af78989e","_id":"antd@2.0.0-beta.2","_shasum":"03c98adaba21b1bdc799598b57e3fd30a0668c8b","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"03c98adaba21b1bdc799598b57e3fd30a0668c8b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.2.tgz_1473674461695_0.577003670623526"},"directories":{}},"2.0.0-beta.3":{"name":"antd","version":"2.0.0-beta.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"^7.0.3","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.2.1","rc-dropdown":"~1.4.8","rc-editor-mention":"^0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.6.3","rc-menu":"^5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"^6.5.1","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~5.9.2","rc-time-picker":"^2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"451ea82a91a4039b893196b6bc299a0617df8a39","_id":"antd@2.0.0-beta.3","_shasum":"288429d09a8b6b20a9a85e5d3f54b4bf02092197","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"288429d09a8b6b20a9a85e5d3f54b4bf02092197","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.3.tgz_1473829179527_0.08336345409043133"},"directories":{}},"1.11.1":{"name":"antd","version":"1.11.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.6.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"db3cbb7fd8d267c2166d87b8f94fc2d5531becb3","_id":"antd@1.11.1","_shasum":"e5e226b9eda019e3d2536272401d5737f51255f8","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"e5e226b9eda019e3d2536272401d5737f51255f8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.11.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-1.11.1.tgz_1473836773920_0.5172344879247248"},"directories":{}},"2.0.0-beta.4":{"name":"antd","version":"2.0.0-beta.4","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"^7.0.3","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.2.1","rc-dropdown":"~1.4.8","rc-editor-mention":"^0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.6.3","rc-menu":"^5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"^6.5.1","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~5.9.2","rc-time-picker":"^2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"1a3f37e3485a87e7e12e46676a7312cec77522ec","_id":"antd@2.0.0-beta.4","_shasum":"5b4b39f072db8f801cb14146bd42af771efd1fca","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"5b4b39f072db8f801cb14146bd42af771efd1fca","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.4.tgz_1473847000833_0.1789854448288679"},"directories":{}},"2.0.0-beta.5":{"name":"antd","version":"2.0.0-beta.5","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"^7.0.3","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.2.1","rc-dropdown":"~1.4.8","rc-editor-mention":"^0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.6.3","rc-menu":"^5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"^6.5.1","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~5.9.2","rc-time-picker":"^2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"6ec6ec8af19fbd34e8488b4bf17fe56a3684c73c","_id":"antd@2.0.0-beta.5","_shasum":"2034a6e17967dbead2ce03e12f698ccb73bcbb5c","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"2034a6e17967dbead2ce03e12f698ccb73bcbb5c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.5.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.5.tgz_1474163475644_0.5029019573703408"},"directories":{}},"2.0.0-beta.6":{"name":"antd","version":"2.0.0-beta.6","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.0.3","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.3.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"^3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"64645e50464af9ec3b760403ae6f18d9c70669ef","_id":"antd@2.0.0-beta.6","_shasum":"73e1154c75fab2429a75a2a6871f57aeb9d3d93d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"73e1154c75fab2429a75a2a6871f57aeb9d3d93d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.6.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.6.tgz_1474165569574_0.09353032428771257"},"directories":{}},"2.0.0-beta.7":{"name":"antd","version":"2.0.0-beta.7","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.0.3","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.3.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"^3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"370a6bde528daa7afa17d5b678df63eac56af7f8","_id":"antd@2.0.0-beta.7","_shasum":"c52d25092baf2da041644c06e7bdfdb2cbb6992f","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"c52d25092baf2da041644c06e7bdfdb2cbb6992f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.7.tgz_1474251900179_0.7105131139978766"},"directories":{}},"2.0.0-beta.8":{"name":"antd","version":"2.0.0-beta.8","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.1.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.3.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"^3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"a67614766cb81d824308514287ce40d031f599a3","_id":"antd@2.0.0-beta.8","_shasum":"05b492f49261d0885704e646340364a8d18ae69b","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"05b492f49261d0885704e646340364a8d18ae69b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.8.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.8.tgz_1474270133699_0.8474770381581038"},"directories":{}},"2.0.0-beta.9":{"name":"antd","version":"2.0.0-beta.9","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.1.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.3.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"^3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"3701d9a558060ead8593bdfd68c9010194f5249e","_id":"antd@2.0.0-beta.9","_shasum":"328f819ee67a6889878ab034ea6364854bee6d80","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"328f819ee67a6889878ab034ea6364854bee6d80","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.9.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.9.tgz_1474276688985_0.8676758033689111"},"directories":{}},"2.0.0-beta.10":{"name":"antd","version":"2.0.0-beta.10","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.1.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.3.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"^3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.11.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"d6b48adc5dfa1a959c744e083b65a4ae2a9a31e5","_id":"antd@2.0.0-beta.10","_shasum":"c76c389c24c76a56cc2d8c78f75c470b6f19bbb5","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"c76c389c24c76a56cc2d8c78f75c470b6f19bbb5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.10.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.10.tgz_1474279084987_0.9939872622489929"},"directories":{}},"2.0.0-beta.11":{"name":"antd","version":"2.0.0-beta.11","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.1.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.3.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.1.0","rc-util":"^3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.12.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"713393616e198ddad317234dc6aa84d1f344a48d","_id":"antd@2.0.0-beta.11","_shasum":"cf001ae7c23cdee696ceb1b2a8ff548e4033c5e6","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"cf001ae7c23cdee696ceb1b2a8ff548e4033c5e6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.11.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.11.tgz_1474535725582_0.2995281119365245"},"directories":{}},"2.0.0-beta.12":{"name":"antd","version":"2.0.0-beta.12","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.1.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.3.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.1.0","rc-util":"^3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.12.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^10.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.3.1","history":"^3.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typings":"^1.3.2","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"4bf80a2e26f6083be8f0d67f81cddf53e546fcac","_id":"antd@2.0.0-beta.12","_shasum":"cf88ebdcc6b8e71301879454c26b85779ee80066","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"cf88ebdcc6b8e71301879454c26b85779ee80066","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.12.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.12.tgz_1474856956415_0.4019163581542671"},"directories":{}},"1.11.2":{"name":"antd","version":"1.11.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.6.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"9ec69e4a2bcbf6e3774dc71f0475e41a5899c724","_id":"antd@1.11.2","_shasum":"72129109a78d4739efb592258aa1022823d95d67","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"72129109a78d4739efb592258aa1022823d95d67","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.11.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.11.2.tgz_1474876835103_0.19060791400261223"},"directories":{}},"2.0.0-beta.13":{"name":"antd","version":"2.0.0-beta.13","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.2.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.4.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.1.0","rc-util":"^4.0.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.12.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"1c55ed0dc09ee4c601e28a11183af3d5e6744266","_id":"antd@2.0.0-beta.13","_shasum":"05cc9042f8edb8fbbb15cad04b1aa194b638d90f","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"05cc9042f8edb8fbbb15cad04b1aa194b638d90f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0-beta.13.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-2.0.0-beta.13.tgz_1474955597193_0.4787203746382147"},"directories":{}},"2.0.0":{"name":"antd","version":"2.0.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.2.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.4.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.1.0","rc-util":"^4.0.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.12.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"986c745177c09fe48724c5cb6ba755aaacfe99a6","_id":"antd@2.0.0","_shasum":"105d3a1ba787ee1c81ad10fd021f549b35f1f10d","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"105d3a1ba787ee1c81ad10fd021f549b35f1f10d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/antd-2.0.0.tgz_1475042218420_0.7879527849145234"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.0.1":{"name":"antd","version":"2.0.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"^2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.2.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.4.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.1.0","rc-util":"^4.0.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.12.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"d9e6e5bc15cffd9a1ed3992bfb1c8f2b9e74665a","_id":"antd@2.0.1","_shasum":"da06c8637f612184c8cb2ff8751cf1c54f7adada","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"da06c8637f612184c8cb2ff8751cf1c54f7adada","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.0.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.0.1.tgz_1475281899268_0.433054969413206"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.1.0":{"name":"antd","version":"2.1.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"^2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.2.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.4.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.1.0","rc-util":"^4.0.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.12.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && tsc && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"bf1241d7930792db8e6a921303c47c26f873f09f","_id":"antd@2.1.0","_shasum":"d933cec0190dd50abba6b83e0768da0062769af6","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"d933cec0190dd50abba6b83e0768da0062769af6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.1.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.1.0.tgz_1476605923785_0.49814570834860206"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.2.0":{"name":"antd","version":"2.2.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"^2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.3.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.4.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"^0.13.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.3.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"3ea914721d3d107e206489c7a0139114dfcec91b","_id":"antd@2.2.0","_shasum":"6eb1011cec2b67aa199a89e0cd777225052af150","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"6eb1011cec2b67aa199a89e0cd777225052af150","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.2.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.2.0.tgz_1477651030408_0.6010009606834501"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.2.1":{"name":"antd","version":"2.2.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"^2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.3.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.4.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.2.2","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.5.1","rc-slider":"~5.1.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.0.0","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"^0.13.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.3.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"bd8016f2368acedf932b5f55f65166e7a9d7dff7","_id":"antd@2.2.1","_shasum":"7ef5e76dddf344d02c84cf1cfc4fb37177232364","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"7ef5e76dddf344d02c84cf1cfc4fb37177232364","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.2.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.2.1.tgz_1478065312645_0.875965123064816"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.3.0":{"name":"antd","version":"2.3.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"^2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.4.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.2.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.1.0","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"^0.13.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.3.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"b64ea0edcc8dc410c21b2700d956358b48054d20","_id":"antd@2.3.0","_shasum":"23ae68d04309dbf0a8202bde25bfa69c78f0eb34","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"23ae68d04309dbf0a8202bde25bfa69c78f0eb34","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.3.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.3.0.tgz_1478416452740_0.7605251525528729"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.3.1":{"name":"antd","version":"2.3.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"^2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.4.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.2.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.1.0","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"^0.13.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.3.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"449a982f927b60ea040aca4992276ec9edc3b070","_id":"antd@2.3.1","_shasum":"6338bca838b8d4caa732e6a1907c9bf5348efa29","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"6338bca838b8d4caa732e6a1907c9bf5348efa29","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.3.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.3.1.tgz_1478491709457_0.9541627715807408"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.3.2":{"name":"antd","version":"2.3.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"^2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.4.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.2.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.1.0","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"^0.13.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.3.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^3.0.0","jest-cli":"^15.1.1","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","typings":"^1.3.2","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"b092c022aa91fbd9b272e122cb2101addd65f880","_id":"antd@2.3.2","_shasum":"2de8190a05bcd02093c8782c993ed503cd8dea67","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"2de8190a05bcd02093c8782c993ed503cd8dea67","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.3.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.3.2.tgz_1478676417956_0.7097099502570927"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.4.0":{"name":"antd","version":"2.4.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"^2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.4.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.2.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"^0.13.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^4.4.0","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","rc-queue-anim":"~0.12.4","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"27232a856136339ddc624226dff7d3b418e63118","_id":"antd@2.4.0","_shasum":"f5425a2b4ef863e8ce7355a2af9ba0a7c79996dd","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"f5425a2b4ef863e8ce7355a2af9ba0a7c79996dd","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.4.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.4.0.tgz_1478863915947_0.03721154434606433"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.4.1":{"name":"antd","version":"2.4.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.4.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.2.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"0.13.9","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^4.4.0","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","rc-queue-anim":"~0.12.4","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"node_modules/typescript-babel-jest","testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"b413e4421c75bf00cd39134082d72dc885a97dd6","_id":"antd@2.4.1","_shasum":"40b7066d7261ea64aaf52a4fd06276da5adb6b87","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"40b7066d7261ea64aaf52a4fd06276da5adb6b87","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.4.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.4.1.tgz_1478874680499_0.9775903255213052"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.4.2":{"name":"antd","version":"2.4.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"~2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.4.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.2.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"~0.14.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^4.4.0","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","rc-queue-anim":"~0.12.4","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"transform":{".*":"node_modules/typescript-babel-jest"},"testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"5400cacd132191b0c97004047522e421231db6e4","_id":"antd@2.4.2","_shasum":"c05f110322a5c67f389c3a12550af970a88257a6","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"c05f110322a5c67f389c3a12550af970a88257a6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.4.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.4.2.tgz_1479026210401_0.1551545613911003"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"2.4.3":{"name":"antd","version":"2.4.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","moment":"~2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.4.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.2.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.0.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-tools":"~0.14.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","bisheng":"^0.14.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","css-split-webpack-plugin":"^0.2.1","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","history":"^4.4.0","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","moment-timezone":"^0.5.5","pre-commit":"1.x","querystring":"^0.2.0","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","rc-queue-anim":"~0.12.4","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build -c ./site/bisheng.config.js","deploy":"npm run clean && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run tslint && npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest --no-cache","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["ts","tsx","js","jsx","json"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"transform":{".*":"node_modules/typescript-babel-jest"},"testRegex":"(/tests/.*|\\.(test|spec))\\.(js)$"},"pre-commit":["lint"],"gitHead":"6e619f64602a96ca08135351d618b20e943ce25f","_id":"antd@2.4.3","_shasum":"b3a16012e9a95c6ca581e8196bd36e7b3fba5027","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"b3a16012e9a95c6ca581e8196bd36e7b3fba5027","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.4.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.4.3.tgz_1479392712365_0.4991625708062202"},"directories":{},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x"},"1.11.3":{"name":"antd","version":"1.11.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.6.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"51b74b7daa054b4dcfc5b46d857fac1d4133aa88","_id":"antd@1.11.3","_shasum":"af725500b39864f87bb9cdb02007907a44262fb8","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"af725500b39864f87bb9cdb02007907a44262fb8","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.11.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-1.11.3.tgz_1479881413054_0.7763613013084978"},"directories":{}},"1.11.4":{"name":"antd","version":"1.11.4","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.6.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"44fd5990f6d156c516af3e9ccfa7ede01c383ebc","_id":"antd@1.11.4","_shasum":"25f892361fa1728872e73e766adad81b2c2e0f7b","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"25f892361fa1728872e73e766adad81b2c2e0f7b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.11.4.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.11.4.tgz_1479982146208_0.20226547215133905"},"directories":{}},"2.5.0":{"name":"antd","version":"2.5.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.15.1","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.5.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.7.0","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.3.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"0.14.2","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.17.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.3.0","bisheng-plugin-toc":"^0.3.0","coveralls":"^2.11.15","css-split-webpack-plugin":"^0.2.1","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","glob":"^7.1.1","history":"^4.4.0","jest":"^17.0.1","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"1.x","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"babel":{"presets":["es2015","react","stage-0"]},"scripts":{"test":"npm run lint && npm run dist && npm run jest -- --coverage -w 2 && npm run jest:node -- -w 2","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","jest":"jest","jest:node":"jest --config .jest.node.json","clean":"antd-tools run clean","dist":"antd-tools run dist && node ./tests/dekko/dist.test.js","compile":"antd-tools run compile && node ./tests/dekko/lib.test.js","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run update-self && antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"node_modules/typescript-babel-jest","tests/.*\\.js$":"node_modules/babel-jest","\\.md$":"node_modules/antd-demo-jest"},"testRegex":"/tests/.*\\.test\\.js$","coveragePathIgnorePatterns":["/node_modules/","components/.*/demo","/dist/","/tests/"]},"pre-commit":["lint"],"gitHead":"7ade6013df8f91b1e26eb41e69f73422a176786b","_id":"antd@2.5.0","_shasum":"9c2bd8750b49fdc2c164cb5d184fa6f2c9d6208f","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"9c2bd8750b49fdc2c164cb5d184fa6f2c9d6208f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.5.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.5.0.tgz_1480143421680_0.7996158092282712"},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x","directories":{}},"2.5.1":{"name":"antd","version":"2.5.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.5.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.8.3","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.3.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.0.5","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.14.6","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.17.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.3.0","bisheng-plugin-toc":"^0.3.0","coveralls":"^2.11.15","css-split-webpack-plugin":"^0.2.1","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","glob":"^7.1.1","history":"^4.4.0","jest":"^17.0.1","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"1.x","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"babel":{"presets":["es2015","react","stage-0"]},"scripts":{"test":"npm run lint && npm run dist && npm run jest -- --coverage -w 2 && npm run jest:node -- -w 2","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix test site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","jest":"jest","jest:node":"jest --config .jest.node.json","clean":"antd-tools run clean","dist":"antd-tools run dist && node ./tests/dekko/dist.test.js","compile":"antd-tools run compile && node ./tests/dekko/lib.test.js","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run update-self && antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"node_modules/typescript-babel-jest","tests/.*\\.js$":"node_modules/babel-jest","\\.md$":"node_modules/antd-demo-jest"},"testRegex":"/tests/.*\\.test\\.js$","coveragePathIgnorePatterns":["/node_modules/","components/.*/demo","/dist/","/tests/"]},"pre-commit":["lint"],"gitHead":"eacfe25e196359c58dc33eeb88bda9948d386281","_id":"antd@2.5.1","_shasum":"54896e3f8fb31fdfa028c054f5001f8532ae7164","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"54896e3f8fb31fdfa028c054f5001f8532ae7164","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.5.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.5.1.tgz_1480843337404_0.7776893028058112"},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x","directories":{}},"2.5.2":{"name":"antd","version":"2.5.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.5.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.8.3","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.4.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.2.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.14.6","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.18.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.3.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","css-split-webpack-plugin":"^0.2.1","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","glob":"^7.1.1","history":"^4.4.0","jest":"^17.0.1","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"1.x","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"npm run lint && npm run dist && npm run jest -- --coverage -w 2 && npm run jest:node -- -w 2","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint tests site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix tests site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","jest":"jest","jest:node":"jest --config .jest.node.json","clean":"antd-tools run clean","dist":"antd-tools run dist && node ./tests/dekko/dist.test.js","compile":"antd-tools run compile && node ./tests/dekko/lib.test.js","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run update-self && antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"node_modules/typescript-babel-jest","tests/.*\\.js$":"node_modules/babel-jest","\\.md$":"node_modules/antd-demo-jest"},"testRegex":"/tests/.*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"86a2cf326daccef4642abe20a3dcacf12b278e1f","_id":"antd@2.5.2","_shasum":"ba8dffdb37e1611e5f58c23dfa8b4eb10b74a58d","_from":".","_npmVersion":"3.10.9","_nodeVersion":"7.1.0","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"ba8dffdb37e1611e5f58c23dfa8b4eb10b74a58d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.5.2.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.5.2.tgz_1481377358519_0.7254551728256047"},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x","directories":{}},"2.5.3":{"name":"antd","version":"2.5.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.5.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.0.0","rc-input-number":"~2.8.3","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.4.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.18.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.3.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","css-split-webpack-plugin":"^0.2.1","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"*","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","glob":"^7.1.1","history":"^4.4.0","jest":"^17.0.1","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","fetch-jsonp":"^1.0.3","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"npm run lint && npm run dist && npm run jest -- --coverage -w 2 && npm run jest:node -- -w 2","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint tests site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix tests site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","jest":"jest","jest:node":"jest --config .jest.node.json","clean":"antd-tools run clean","dist":"antd-tools run dist && node ./tests/dekko/dist.test.js","compile":"antd-tools run compile && node ./tests/dekko/lib.test.js","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run update-self && antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"node_modules/typescript-babel-jest","\\.js$":"node_modules/babel-jest","\\.md$":"node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"72e136405ed892f51c2962a4da72fd5886268cae","_id":"antd@2.5.3","_shasum":"bda72065d8932fd8c9f17889fc406f90f292cfe2","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"bda72065d8932fd8c9f17889fc406f90f292cfe2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.5.3.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.5.3.tgz_1482566522700_0.9974272565450519"},"deprecated":"It's recommended to upgrade antd to the latest compatible version 2.x","directories":{}},"2.6.0":{"name":"antd","version":"2.6.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.5.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.1.0","rc-input-number":"~2.8.3","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.4.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.18.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.3.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","css-split-webpack-plugin":"^0.2.1","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","glob":"^7.1.1","history":"^4.4.0","jest":"^17.0.1","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","fetch-jsonp":"^1.0.3","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"npm run lint && npm run dist && npm run jest -- --coverage -w 2 && npm run jest:node -- -w 2","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint tests site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix tests site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","jest":"jest","jest:node":"jest --config .jest.node.json","clean":"antd-tools run clean","dist":"antd-tools run dist && node ./tests/dekko/dist.test.js","compile":"antd-tools run compile && node ./tests/dekko/lib.test.js","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run update-self && antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"node_modules/typescript-babel-jest","\\.js$":"node_modules/babel-jest","\\.md$":"node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"ffa7f9b1bafa9bc1092308b1b543b1cd37d37b2b","_id":"antd@2.6.0","_shasum":"44dd5d4854cb2a09e940b6ee0c47d3fd08806139","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"44dd5d4854cb2a09e940b6ee0c47d3fd08806139","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.6.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"ddcat1115","email":"418150596@qq.com"},{"name":"raohai","email":"surgesoft@gmail.com"},{"name":"sorrycc","email":"sorrycc@gmail.com"},{"name":"superraytin","email":"superRaytin@gmail.com"},{"name":"yesmeck","email":"yesmeck@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.6.0.tgz_1483295610564_0.6950901502277702"},"directories":{}},"2.6.1":{"name":"antd","version":"2.6.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.5.1","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.1.0","rc-input-number":"~2.8.3","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.4.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"~0.14.41","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.18.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.3.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","css-split-webpack-plugin":"^0.2.1","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","glob":"^7.1.1","history":"^4.4.0","jest":"^17.0.1","jest-cli":"^17.0.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","fetch-jsonp":"^1.0.3","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"npm run lint && npm run dist && npm run jest -- --coverage -w 2 && npm run jest:node -- -w 2","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint tests site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix tests site scripts ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx,.tsx' --ignore-pattern '!.eslintrc.js' && eslint-tinker ./components/*/demo/*.md","jest":"jest","jest:node":"jest --config .jest.node.json","clean":"antd-tools run clean","dist":"antd-tools run dist && node ./tests/dekko/dist.test.js","compile":"antd-tools run compile && node ./tests/dekko/lib.test.js","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run update-self && antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"node_modules/typescript-babel-jest","\\.js$":"node_modules/babel-jest","\\.md$":"node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"3f20979fd7112e1f5cb7067b1e66b58c153b2167","_id":"antd@2.6.1","_shasum":"57b269af389d8bd3ac21dee1889ef099ab1c32cf","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"57b269af389d8bd3ac21dee1889ef099ab1c32cf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.6.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.6.1.tgz_1483697954176_0.08722076541744173"},"directories":{}},"1.11.5":{"name":"antd","version":"1.11.5","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.6.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub --npm-tag=1.x","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"640522cb73b5f1ddbb3f963595b92383a1330bbf","_id":"antd@1.11.5","_shasum":"f6c985922c007f142d2e164fcb0af7cb96f4a379","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"f6c985922c007f142d2e164fcb0af7cb96f4a379","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.11.5.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.11.5.tgz_1483933261855_0.5519984208513051"},"directories":{}},"1.11.6":{"name":"antd","version":"1.11.6","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"dist/antd","files":["dist","lib","index.d.ts"],"typings":"type-definitions/antd.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","classnames":"~2.2.0","css-animation":"^1.2.5","gregorian-calendar":"~4.1.0","gregorian-calendar-format":"~4.1.0","object.omit":"^2.0.0","rc-animate":"~2.3.0","rc-calendar":"~5.6.2","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.3","rc-dialog":"~6.1.1","rc-dropdown":"~1.4.8","rc-form":"~0.17.1","rc-input-number":"~2.6.3","rc-menu":"~4.13.0","rc-notification":"~1.3.4","rc-pagination":"~1.5.3","rc-progress":"~1.0.4","rc-queue-anim":"~0.12.4","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.4.6","rc-slider":"~4.0.0","rc-steps":"~2.1.5","rc-switch":"~1.4.2","rc-table":"~4.6.0","rc-tabs":"~5.9.2","rc-time-picker":"~1.1.6","rc-tooltip":"~3.4.2","rc-tree":"~1.3.6","rc-tree-select":"~1.8.0","rc-upload":"~2.0.3","rc-util":"~3.3.0","react-addons-pure-render-mixin":"^15.0.0","react-slick":"~0.13.3","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"antd-tools":"^0.8.0","babel-eslint":"^6.0.2","babel-jest":"^13.2.2","babel-plugin-antd":"^0.4.0","bisheng":"^0.12.0","bisheng-plugin-antd":"~0.2.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.2.0","bisheng-plugin-toc":"^0.3.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","es6-shim":"^0.35.0","eslint":"^3.0.1","eslint-config-airbnb":"^9.0.1","eslint-plugin-babel":"^3.0.0","eslint-plugin-import":"^1.6.1","eslint-plugin-jsx-a11y":"^2.0.1","eslint-plugin-markdown":"*","eslint-plugin-react":"^5.0.1","eslint-tinker":"^0.3.1","history":"^3.0.0","intl":"^1.2.2","intl-locales-supported":"^1.0.0","jest-cli":"^13.2.3","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","jsonp":"^0.2.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","nunjucks":"^2.4.2","pre-commit":"1.x","querystring":"^0.2.0","ramda":"^0.21.0","rc-scroll-anim":"~0.3.0","rc-tween-one":"~0.6.20","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^2.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","values.js":"^1.0.3","webpack-babel-jest":"^1.0.4"},"scripts":{"dist":"antd-tools run dist","compile":"antd-tools run compile","clean":"antd-tools run clean","start":"bisheng start -c ./site/bisheng.config.js","site":"bisheng build -c ./site/bisheng.config.js","pre-deploy":"mkdir -p _site && cp CNAME _site","deploy":"npm run clean && npm run pre-deploy && bisheng gh-pages -c ./site/bisheng.config.js","lint":"npm run srclint && npm run demolint && npm run lesshint","srclint":"RUN_ENV=SRC eslint components test site scripts ./*.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix components test site scripts ./*.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","test":"npm run lint && npm run dist && npm run jest","jest":"jest","pre-publish":"node ./scripts/prepub","prepublish":"antd-tools run guard","pub":"antd-tools run update-self && antd-tools run pub --npm-tag=1.x","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"moduleFileExtensions":["js","jsx","json"],"unmockedModulePathPatterns":["<rootDir>/node_modules/*"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/"],"scriptPreprocessor":"<rootDir>/node_modules/webpack-babel-jest","testDirectoryName":"tests"},"pre-commit":["lint"],"gitHead":"4178b0afd8e7291ac72046301c97a533a9cefd3d","_id":"antd@1.11.6","_shasum":"92c062b524281e5b42154da322f743ec8e81fd7c","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"92c062b524281e5b42154da322f743ec8e81fd7c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-1.11.6.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-1.11.6.tgz_1484215544925_0.4531777093652636"},"directories":{}},"2.6.2":{"name":"antd","version":"2.6.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.1.0","rc-input-number":"~2.8.3","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.4.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.0","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.18.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.3.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","css-split-webpack-plugin":"^0.2.1","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","history":"^4.4.0","jest":"^18.1.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","clean":"antd-tools run clean","dist":"antd-tools run dist","compile":"antd-tools run compile","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"25f95d467a68df0a93602d048bd6fcb1af1af3ea","_id":"antd@2.6.2","_shasum":"642683e7018f4f801fd19a7752c1b7ab9bca1291","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"642683e7018f4f801fd19a7752c1b7ab9bca1291","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.6.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.6.2.tgz_1484401974026_0.4154887751210481"},"directories":{}},"2.6.3":{"name":"antd","version":"2.6.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.1.0","rc-input-number":"~2.8.3","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.4.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.0","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.18.0","bisheng-plugin-antd":"~0.6.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.3.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","css-split-webpack-plugin":"^0.2.1","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","history":"^4.4.0","jest":"^18.1.0","jsonml-to-react-component":"~0.2.0","jsonml.js":"^0.1.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-router":"^3.0.0","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","clean":"antd-tools run clean","dist":"antd-tools run dist","compile":"antd-tools run compile","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"1bf0bab2a7bc0a774119f501806e3e0e3a6ba283","_id":"antd@2.6.3","_shasum":"71dd1f8de7f420e1b9d887af156274b4157426f2","_from":".","_npmVersion":"3.10.9","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"71dd1f8de7f420e1b9d887af156274b4157426f2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.6.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.6.3.tgz_1484411734312_0.234371971571818"},"directories":{}},"2.6.4":{"name":"antd","version":"2.6.4","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.0","rc-cascader":"~0.10.1","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.1.0","rc-input-number":"~2.8.3","rc-menu":"~5.0.1","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.6.1","rc-slider":"~5.4.0","rc-steps":"~2.2.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.8.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.0","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.20.0","bisheng-plugin-antd":"^0.8.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.4.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^18.1.0","jsonml.js":"^0.1.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run tslint && npm run eslint && npm run demolint && npm run lesshint","tslint":"antd-tools run ts-lint && npm run compile && rm -rf lib","eslint":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","demolint":"RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx' && eslint-tinker ./components/*/demo/*.md","clean":"antd-tools run clean","dist":"antd-tools run dist","compile":"antd-tools run compile","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","babel-site":"babel ./site/theme/template --out-dir ./site/theme/template","clean-site":"rm site/theme/template/**/*.js site/theme/template/*.js","site":"npm run babel-site && bisheng build --ssr -c ./site/bisheng.config.js && npm run clean-site","deploy":"npm run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"896bd7e55b7495bf5a22b292c512bb5bd76e5389","_id":"antd@2.6.4","_shasum":"2552336a768518fb25dc0e6229cbe58229419aaa","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"2552336a768518fb25dc0e6229cbe58229419aaa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.6.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.6.4.tgz_1484930410644_0.7150860237888992"},"directories":{}},"2.7.0":{"name":"antd","version":"2.7.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.3.0","rc-input-number":"~3.0.0","rc-menu":"~5.0.9","rc-notification":"~1.3.4","rc-pagination":"~1.6.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.7.1","rc-slider":"~5.4.0","rc-steps":"~2.3.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"15.0.4","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.20.0","bisheng-plugin-antd":"^0.8.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.4.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^18.1.0","jsonml.js":"^0.1.0","lesshint":"^2.0.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lesshint","lint:ts":"antd-tools run ts-lint && npm run compile && rimraf lib","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lesshint":"lesshint components -r scripts/lesshint-report.js","eslint-fix":"npm run eslint-fix:code && npm run eslint-fix:demo","eslint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","eslint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"a67264d68cdc6bccd6aaeb74278fca613d4e621f","_id":"antd@2.7.0","_shasum":"6db106f60536b3628ee28d8be0feacb31cab89d9","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"6db106f60536b3628ee28d8be0feacb31cab89d9","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.7.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.7.0.tgz_1486204151780_0.6687589786015451"},"directories":{}},"2.7.1":{"name":"antd","version":"2.7.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.3.0","rc-input-number":"~3.0.0","rc-menu":"~5.0.9","rc-notification":"~1.3.4","rc-pagination":"~1.7.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.7.1","rc-slider":"~5.4.0","rc-steps":"~2.3.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.21.0","bisheng-plugin-antd":"^0.10.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.4.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^18.1.0","jsonml.js":"^0.1.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"antd-tools run ts-lint && npm run compile && rimraf lib","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"components/**/*.less\" --syntax less","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"1306c4656d83045b2f19d2451845bec2d9dd9c96","_id":"antd@2.7.1","_shasum":"e5d3b26c4a2178858c5fa9d69a912a85fbff95b3","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"e5d3b26c4a2178858c5fa9d69a912a85fbff95b3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.7.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.7.1.tgz_1486730372285_0.3396132104098797"},"directories":{}},"2.7.2":{"name":"antd","version":"2.7.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.3.0","rc-input-number":"~3.0.0","rc-menu":"~5.0.9","rc-notification":"~1.3.4","rc-pagination":"~1.7.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.7.1","rc-slider":"~6.1.0","rc-steps":"~2.3.0","rc-switch":"~1.4.2","rc-table":"~5.2.0","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.22.0","bisheng-plugin-antd":"^0.12.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^18.1.0","jsonml.js":"^0.1.0","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"antd-tools run ts-lint && npm run compile && rimraf lib","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"components/**/*.less\" --syntax less","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt"},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint"],"gitHead":"cad31bd499dcaaa15537e0483e1dcac72973fd44","_id":"antd@2.7.2","_shasum":"2f5b36775c8eeaf9733c52cfb8d839dcf4d05747","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.5","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"2f5b36775c8eeaf9733c52cfb8d839dcf4d05747","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.7.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.7.2.tgz_1487326220925_0.5476511009037495"},"directories":{}},"2.7.3":{"name":"antd","version":"2.7.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.3.0","rc-input-number":"~3.1.1","rc-menu":"~5.0.9","rc-notification":"~1.3.4","rc-pagination":"~1.7.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.7.1","rc-slider":"~6.1.0","rc-steps":"~2.3.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.22.0","bisheng-plugin-antd":"^0.12.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^18.1.0","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.1.6","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint-staged"],"gitHead":"d4036d3cae8137986840f1e849beaa02e0dddbb2","_id":"antd@2.7.3","_shasum":"4fbf77f30d7d47441b5dd0a49095f0aa09b3779f","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"4fbf77f30d7d47441b5dd0a49095f0aa09b3779f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.7.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.7.3.tgz_1488166675693_0.5174862977582961"},"directories":{}},"2.7.4":{"name":"antd","version":"2.7.4","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.4.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.3.0","rc-form":"~1.3.0","rc-input-number":"~3.1.1","rc-menu":"~5.0.9","rc-notification":"~1.3.4","rc-pagination":"~1.7.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~1.1.2","rc-select":"~6.7.1","rc-slider":"~6.1.0","rc-steps":"~2.3.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.1.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.16.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.22.0","bisheng-plugin-antd":"^0.12.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","coveralls":"^2.11.15","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^18.1.0","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.1.6","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"]},"pre-commit":["lint-staged"],"gitHead":"fd547ebffece15daa1a5b18b8c01d1af20ec5c03","_id":"antd@2.7.4","_shasum":"2a4498efabf1153fd12424d3ab66a12d08d4bf34","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"2a4498efabf1153fd12424d3ab66a12d08d4bf34","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.7.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.7.4.tgz_1488290689133_0.9090734755154699"},"directories":{}},"2.8.0":{"name":"antd","version":"2.8.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.2","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.5.2","rc-form":"~1.3.0","rc-input-number":"~3.3.0","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.7.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.7.1","rc-slider":"~6.1.0","rc-steps":"~2.4.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.2.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.18.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.22.0","bisheng-plugin-antd":"^0.12.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","coveralls":"~2.11.16","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^18.1.0","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","lodash.debounce":"^4.0.6","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"]},"pre-commit":["lint-staged"],"gitHead":"caa568addb26b3fc43ab62bdf4e8a8e622773ccf","_id":"antd@2.8.0","_shasum":"79a4e47cdbeb975a07de0f6c2f1e23ec2e2435e6","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"79a4e47cdbeb975a07de0f6c2f1e23ec2e2435e6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.8.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.8.0.tgz_1488796036090_0.15029057231731713"},"directories":{}},"2.8.1":{"name":"antd","version":"2.8.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.2","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.5.2","rc-form":"~1.3.0","rc-input-number":"~3.3.0","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.7.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.7.1","rc-slider":"~6.1.0","rc-steps":"~2.4.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.2.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.18.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bisheng":"^0.22.0","bisheng-plugin-antd":"^0.12.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^18.1.0","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"]},"pre-commit":["lint-staged"],"gitHead":"cb44be1db5cce64b982be07f703accd68a4a59d1","_id":"antd@2.8.1","_shasum":"ff69e7cd2f6fe6a2bdf31993e40ef0cc90a4706f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"ff69e7cd2f6fe6a2bdf31993e40ef0cc90a4706f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.8.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.8.1.tgz_1489207294912_0.42254037666134536"},"directories":{}},"2.8.2":{"name":"antd","version":"2.8.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"~2.17.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.2","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.5.2","rc-form":"~1.3.0","rc-input-number":"~3.3.0","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.7.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.7.1","rc-slider":"~6.1.0","rc-steps":"~2.4.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.2.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.18.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^17.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"~6.15.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.22.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^3.0.2","eslint-plugin-markdown":"1.0.0-beta.3","eslint-plugin-react":"^6.1.2","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"~0.12.4","rc-scroll-anim":"~0.5.0","rc-tween-one":"~0.11.0","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-color-standalone":"^2.4.2-1","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^0.1.5","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"]},"pre-commit":["lint-staged"],"gitHead":"1b8d5f56d0697b77adb4b1c3662fe759b6837b85","_id":"antd@2.8.2","_shasum":"e8121b906cc8a99e8b956166614d6b74ddc15a45","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"e8121b906cc8a99e8b956166614d6b74ddc15a45","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.8.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.8.2.tgz_1489910212512_0.8021278493106365"},"directories":{}},"2.8.3":{"name":"antd","version":"2.8.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"~2.18.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.6.2","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.5.2","rc-form":"~1.3.0","rc-input-number":"~3.3.0","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.7.0","rc-progress":"~2.0.1","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.7.1","rc-slider":"~6.1.0","rc-steps":"~2.4.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.2.0","rc-time-picker":"~2.2.1","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.19.1","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^3.1.4","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-react":"^6.10.3","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^0.13.2","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-color-standalone":"^2.4.2-1","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"npm run site:babel && bisheng build --ssr -c ./site/bisheng.config.js && npm run site:clean","site:babel":"babel ./site/theme/template --out-dir ./site/theme/template","site:clean":"rimraf site/theme/template/**/*.js site/theme/template/*.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"]},"pre-commit":["lint-staged"],"gitHead":"0327f0c80436b93ae0ba202ba331f0fc6f2ab305","_id":"antd@2.8.3","_shasum":"abfc38ec0d86ff377ccd58bfc0580e22be279d38","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.6.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"abfc38ec0d86ff377ccd58bfc0580e22be279d38","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.8.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.8.3.tgz_1490580141168_0.16039615008048713"},"directories":{}},"2.9.0":{"name":"antd","version":"2.9.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"~2.18.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.8.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.5.2","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.0","rc-progress":"~2.1.0","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~6.3.0","rc-steps":"~2.4.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.3.0","rc-time-picker":"~2.3.3","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.19.1","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^3.1.4","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-react":"^6.10.3","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^0.13.2","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-color-standalone":"^2.4.2-1","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"]},"pre-commit":["lint-staged"],"gitHead":"6864fea0cb2ab55c5b9f6d280bc60385fc51580c","_id":"antd@2.9.0","_shasum":"da21db9bbb8a9ec3444a6440462bb8e4e37ad82c","_from":".","_npmVersion":"4.2.0","_nodeVersion":"6.7.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"da21db9bbb8a9ec3444a6440462bb8e4e37ad82c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.9.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.9.0.tgz_1491115835076_0.758739315206185"},"directories":{}},"2.9.1":{"name":"antd","version":"2.9.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"~2.18.0","object-assign":"~4.1.0","omit.js":"^0.1.0","rc-animate":"~2.3.0","rc-calendar":"~7.8.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.6.4","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.5.2","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.0","rc-progress":"~2.1.0","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~7.0.0","rc-steps":"~2.5.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.3.0","rc-time-picker":"~2.3.3","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.19.1","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-react":"^6.10.3","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^0.13.2","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.0.0","react-color-standalone":"^2.4.2-1","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"85615771d50924ab99ac9b9dcd75ac61b9f5e89b","_id":"antd@2.9.1","_shasum":"327ecee8264b77cb6c14fcb1e1ecd0d8a2da5d5f","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.3","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"327ecee8264b77cb6c14fcb1e1ecd0d8a2da5d5f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.9.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.9.1.tgz_1491682369228_0.25326481158845127"},"directories":{}},"2.9.2":{"name":"antd","version":"2.9.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.0","rc-calendar":"~8.0.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.7.0","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.5.2","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.0","rc-progress":"~2.1.0","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~7.0.0","rc-steps":"~2.5.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.3.0","rc-time-picker":"~2.3.3","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.19.1","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-react":"^6.10.3","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^0.13.2","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.5.1","react-color-standalone":"^2.4.2-1","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"91bea2052c2fab6b7f0e08dd5113d11949e9109e","_id":"antd@2.9.2","_shasum":"3ebc94686b9df0613e01b617d7cb1788de60bb50","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"3ebc94686b9df0613e01b617d7cb1788de60bb50","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.9.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.9.2.tgz_1492869356130_0.30175544205121696"},"directories":{}},"2.9.3":{"name":"antd","version":"2.9.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.0","rc-calendar":"~8.0.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.7.0","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.5.2","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.0","rc-progress":"~2.1.0","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~7.0.0","rc-steps":"~2.5.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.3.0","rc-time-picker":"~2.3.3","rc-tooltip":"~3.4.2","rc-tree":"~1.4.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.19.1","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-react":"^6.10.3","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^0.13.2","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.5.1","react-color-standalone":"^2.4.2-1","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"2325da5c3e18faf5dee8477312b66a5ff0d6fb60","_id":"antd@2.9.3","_shasum":"5b40349827fab882d73bd97707d614709a620863","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"5b40349827fab882d73bd97707d614709a620863","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.9.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.9.3.tgz_1493027870234_0.42343854275532067"},"directories":{}},"2.10.0":{"name":"antd","version":"2.10.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.0","rc-calendar":"~8.1.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.7.0","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.6.11","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.7","rc-progress":"~2.1.0","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~7.0.0","rc-steps":"~2.5.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.3.0","rc-time-picker":"~2.4.0","rc-tooltip":"~3.4.2","rc-tree":"~1.5.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.19.1","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-react":"^6.10.3","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^0.13.2","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.5.1","react-color-standalone":"^2.4.2-1","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"5b605f1a57ec9e65124c9bdb51ec08de599dd5c0","_id":"antd@2.10.0","_shasum":"45cfd7ce9501589604fe24f0701cffda50446308","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"45cfd7ce9501589604fe24f0701cffda50446308","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.10.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/antd-2.10.0.tgz_1493979360708_0.3078461003024131"},"directories":{}},"2.10.1":{"name":"antd","version":"2.10.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.0","rc-calendar":"~8.1.0","rc-cascader":"~0.11.0","rc-checkbox":"~1.5.0","rc-collapse":"~1.7.0","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.6.11","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.7","rc-progress":"~2.1.0","rc-radio":"~2.0.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~7.0.0","rc-steps":"~2.5.0","rc-switch":"~1.4.2","rc-table":"~5.2.13","rc-tabs":"~7.5.0","rc-time-picker":"~2.4.0","rc-tooltip":"~3.4.2","rc-tree":"~1.5.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.19.1","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.1.0","eslint-plugin-jsx-a11y":"^4.0.0","eslint-plugin-markdown":"1.0.0-beta.4","eslint-plugin-react":"^6.10.3","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^0.13.2","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.5.1","react-color-standalone":"^2.4.2-1","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-stateless-wrapper":"^1.0.2","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"c001101899fa3fced54b473e9f0cf8e9903c4eeb","_id":"antd@2.10.1","_shasum":"d1ef29363543a11f71cf812477a841571575048c","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.3","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"d1ef29363543a11f71cf812477a841571575048c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.10.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/antd-2.10.1.tgz_1494750164144_0.19908085535280406"},"directories":{}},"2.10.2":{"name":"antd","version":"2.10.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","files":["dist","lib"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.0","rc-calendar":"~8.3.0","rc-cascader":"~0.11.0","rc-checkbox":"~2.0.0","rc-collapse":"~1.7.0","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.6.11","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.7","rc-progress":"~2.1.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~7.0.0","rc-steps":"~2.5.0","rc-switch":"~1.4.2","rc-table":"~5.3.3","rc-tabs":"~7.5.0","rc-time-picker":"~2.4.0","rc-tooltip":"~3.4.2","rc-tree":"~1.5.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~0.19.1","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.5.1","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.2.1","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["dekko","/node_modules/","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/antd.js"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"8395470ea8e6856776f4de8798aac9daee01a043","_id":"antd@2.10.2","_shasum":"05e1c2a4d114758f4740ca20cc5194ee492efcb3","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"05e1c2a4d114758f4740ca20cc5194ee492efcb3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.10.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.10.2.tgz_1495507348650_0.687779346248135"},"directories":{}},"2.10.3":{"name":"antd","version":"2.10.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.0","rc-calendar":"~8.4.0","rc-cascader":"~0.11.0","rc-checkbox":"~2.0.0","rc-collapse":"~1.7.0","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.6.11","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.7","rc-progress":"~2.1.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~7.0.0","rc-steps":"~2.5.0","rc-switch":"~1.4.2","rc-table":"~5.3.3","rc-tabs":"~7.5.0","rc-time-picker":"~2.4.0","rc-tooltip":"~3.4.2","rc-tree":"~1.5.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.1","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"^1.4.2","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.5.1","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/","dekko","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx","!components/style/index.tsx","!components/*/locale/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"47c58fb0b2c711deee19e396240c3ab64badf8e2","_id":"antd@2.10.3","_shasum":"bd926b77abe21cd988b8f9d911b9b3153b5b45f6","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"bd926b77abe21cd988b8f9d911b9b3153b5b45f6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.10.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.10.3.tgz_1496228721656_0.07017654459923506"},"directories":{}},"2.10.4":{"name":"antd","version":"2.10.4","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.0","rc-calendar":"~8.4.0","rc-cascader":"~0.11.0","rc-checkbox":"~2.0.0","rc-collapse":"~1.7.0","rc-dialog":"~6.5.0","rc-dropdown":"~1.4.8","rc-editor-mention":"~0.6.11","rc-form":"~1.3.0","rc-input-number":"~3.4.4","rc-menu":"~5.0.9","rc-notification":"~1.4.0","rc-pagination":"~1.8.7","rc-progress":"~2.1.0","rc-rate":"~2.1.0","rc-select":"~6.8.0","rc-slider":"~7.0.0","rc-steps":"~2.5.0","rc-switch":"~1.4.2","rc-table":"~5.3.3","rc-tabs":"~7.5.0","rc-time-picker":"~2.4.0","rc-tooltip":"~3.4.2","rc-tree":"~1.5.0","rc-tree-select":"~1.9.0","rc-upload":"~2.3.0","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^0.2.2","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"^1.4.2","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.23.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.5.1","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/","dekko","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx","!components/style/index.tsx","!components/*/locale/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"0080b6ddf5bae47531f3429d4680c37d45513d37","_id":"antd@2.10.4","_shasum":"d08ba203c86bd991aba1ce3726ba17039033c82f","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.3","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"d08ba203c86bd991aba1ce3726ba17039033c82f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.10.4.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.10.4.tgz_1496241841916_0.18315836205147207"},"directories":{}},"2.11.0":{"name":"antd","version":"2.11.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.3.3","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.9.4","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.1.2","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.3.3","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~1.5.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-addons-test-utils":"^15.5.1","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/","dekko","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx","!components/style/index.tsx","!components/*/locale/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"602cf0a309e453d6985d5cd7f2e0cf6f0d167d9a","_id":"antd@2.11.0","_shasum":"f62507d20b30aa93322220fdb72da2c7d8d2554d","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"f62507d20b30aa93322220fdb72da2c7d8d2554d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.11.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.11.0.tgz_1497010275253_0.8675834306050092"},"directories":{}},"2.12.0-beta1":{"name":"antd","version":"2.12.0-beta1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.9.4","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.1.2","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.4.0","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~1.5.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.13.2","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/","dekko","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx","!components/style/index.tsx","!components/*/locale/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"51f84e82e280282e034956ea9666ce5a9e74910c","_id":"antd@2.12.0-beta1","_npmVersion":"5.0.3","_nodeVersion":"8.0.0","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"integrity":"sha512-bMJvdAh9G75fonbEqIgpPhQ5Yftk5ojZHpC4p9V1u3VYUP1OA0VoR17JvOMhQ92Uv/s2nCfNYyCxmxDbAxesCg==","shasum":"a4cfca7e51242b16497ec45e21db70191b7ca51f","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.12.0-beta1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.12.0-beta1.tgz_1497516765818_0.8746272744610906"},"directories":{}},"2.11.1":{"name":"antd","version":"2.11.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.9.4","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.1.2","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.3.3","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~1.5.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/","dekko","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx","!components/style/index.tsx","!components/*/locale/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"02f4e5794c35957654256f33e2e26bace92fcbe8","_id":"antd@2.11.1","_shasum":"3b5e643060beabff2727fca75919792c1bcae484","_from":".","_npmVersion":"4.4.4","_nodeVersion":"7.7.3","_npmUser":{"name":"yesmeck","email":"yesmeck@gmail.com"},"dist":{"shasum":"3b5e643060beabff2727fca75919792c1bcae484","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.11.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.11.1.tgz_1497803265813_0.17133984132669866"},"directories":{}},"2.11.2":{"name":"antd","version":"2.11.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","object-assign":"~4.1.0","omit.js":"^0.1.0","prop-types":"^15.5.7","rc-animate":"~2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.9.4","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.1.2","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.3.3","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.0.5","antd-tools":"~1.5.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^19.0.2","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"jest":{"setupFiles":["./tests/setup.js"],"moduleFileExtensions":["ts","tsx","js","jsx","json","md"],"modulePathIgnorePatterns":["/_site/"],"testPathIgnorePatterns":["/node_modules/","dekko","node"],"transform":{"\\.tsx?$":"./node_modules/typescript-babel-jest","\\.js$":"./node_modules/babel-jest","\\.md$":"./node_modules/antd-demo-jest"},"testRegex":".*\\.test\\.js$","collectCoverageFrom":["components/**/*.{ts,tsx}","!components/*/style/index.tsx","!components/style/index.tsx","!components/*/locale/index.tsx"],"transformIgnorePatterns":["/node_modules/","/dist/"],"snapshotSerializers":["enzyme-to-json/serializer"]},"pre-commit":["lint-staged"],"gitHead":"890cca119bc9dc84d313bba5c08650c8e4fb8baf","_id":"antd@2.11.2","_shasum":"7c39773e61b894d830b0548ff85c6dac07317618","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"raohai","email":"surgesoft@gmail.com"},"dist":{"shasum":"7c39773e61b894d830b0548ff85c6dac07317618","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.11.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.11.2.tgz_1498374952249_0.21039797272533178"},"directories":{}},"2.12.0":{"name":"antd","version":"2.12.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","omit.js":"^1.0.0","prop-types":"^15.5.7","rc-animate":"^2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.10.0","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.2.0","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.4.0","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.3.0","antd-tools":"~1.6.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^20.0.4","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest --config .jest.js","test-node":"jest --config .jest.node.js","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"pre-commit":["lint-staged"],"gitHead":"60f9ba5b330f03fef3456f8f442c30ebdda82067","_id":"antd@2.12.0","_shasum":"2116df7c45688018ae2ad796fa6cf3e45d9e57d7","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"ddcat1115","email":"418150596@qq.com"},"dist":{"shasum":"2116df7c45688018ae2ad796fa6cf3e45d9e57d7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.12.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.12.0.tgz_1499490841676_0.5935019259341061"},"directories":{}},"2.12.1-beta.0":{"name":"antd","version":"2.12.1-beta.0","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","omit.js":"^1.0.0","prop-types":"^15.5.7","rc-animate":"^2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.10.0","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.2.0","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.4.0","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.3.0","antd-tools":"~1.6.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^20.0.4","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest --config .jest.js","test-node":"jest --config .jest.node.js","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"pre-commit":["lint-staged"],"gitHead":"39207efa4dbba12fc671dc47930ceaf7fed6fd66","_id":"antd@2.12.1-beta.0","_npmVersion":"5.2.0","_nodeVersion":"6.11.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"integrity":"sha512-eREBFofEEqzmHXFsC0Z293nSeyhR6gTa21HyTCM0HGC4zY6oalkzopl0U6YOF8amK0C8OUz0PNiRNypy2xkatQ==","shasum":"743028501711f2de4aa14fb4d665ef916271ee4c","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.12.1-beta.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.12.1-beta.0.tgz_1499853708673_0.47340152133256197"},"directories":{}},"2.12.1-beta.1":{"name":"antd","version":"2.12.1-beta.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","omit.js":"^1.0.0","prop-types":"^15.5.7","rc-animate":"^2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.10.0","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.2.0","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.4.0","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.3.0","antd-tools":"~1.6.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^20.0.4","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest --config .jest.js","test-node":"jest --config .jest.node.js","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"pre-commit":["lint-staged"],"gitHead":"ac21152e106d46216ca238f0a9af6db3d0f84a41","_id":"antd@2.12.1-beta.1","_npmVersion":"5.2.0","_nodeVersion":"6.11.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"integrity":"sha512-x5JbetqWx4WG+3CLEWjzlUrpDkGBp/+aqco8kgErWFy/uwgqb5PhpVn4cNpS06cgd85YapjOIUd5/i7kBTXkNw==","shasum":"53f178cbce1cefb308dbeb27da714c608fd2e8cf","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.12.1-beta.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.12.1-beta.1.tgz_1499919785686_0.318656868301332"},"directories":{}},"2.12.1-beta.2":{"name":"antd","version":"2.12.1-beta.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","omit.js":"^1.0.0","prop-types":"^15.5.7","rc-animate":"^2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.10.0","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.2.0","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.4.0","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.3.0","antd-tools":"~1.6.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^20.0.4","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest --config .jest.js","test-node":"jest --config .jest.node.js","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"pre-commit":["lint-staged"],"gitHead":"d04f9161db2fbf39e0755993800bb5434c8adc2f","_id":"antd@2.12.1-beta.2","_npmVersion":"5.2.0","_nodeVersion":"6.11.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"integrity":"sha512-EKZVCFSso0g1Jq+kVkqafQK11L2JzQePdBbo2et+LcgKGmKbnmAvBMTL8qmV+tYz4IpMFZ86aXUQeGqKVob2XA==","shasum":"053c518cc52f5916be928b9258710e81b93c938b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.12.1-beta.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.12.1-beta.2.tgz_1500004949671_0.49872077046893537"},"directories":{}},"2.12.1-beta.3":{"name":"antd","version":"2.12.1-beta.3","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","omit.js":"^1.0.0","prop-types":"^15.5.7","rc-animate":"^2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.10.0","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.2.0","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.4.0","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.3.0","antd-tools":"~1.6.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^20.0.4","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest --config .jest.js","test-node":"jest --config .jest.node.js","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"pre-commit":["lint-staged"],"gitHead":"44b3dad12f1428786e311a946bcfb0d98689a552","_id":"antd@2.12.1-beta.3","_npmVersion":"5.2.0","_nodeVersion":"6.11.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"integrity":"sha512-1DEVcx6SKBL6Rgm8+0B7bcch9MNLBRxEfyZUN9ewzsDnn42826Kk1ef0/CZeyInVtX754UjH/itSiovUutB23A==","shasum":"adbd759d2156828760dcb7ed0caf6f37c2e352f7","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.12.1-beta.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.12.1-beta.3.tgz_1500006405993_0.7528179108630866"},"directories":{}},"2.12.1":{"name":"antd","version":"2.12.1","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","omit.js":"^1.0.0","prop-types":"^15.5.7","rc-animate":"^2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.10.0","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.2.0","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.4.0","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.8","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.3.0","antd-tools":"~1.6.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^20.0.4","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest --config .jest.js","test-node":"jest --config .jest.node.js","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"pre-commit":["lint-staged"],"gitHead":"02670cb17435348debb297527c30d9a8ac696fe6","_id":"antd@2.12.1","_npmVersion":"5.0.3","_nodeVersion":"8.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-kownL547EtSlJnQCB9S63Yfj9vSe+PtE9XVtqRS2GLoYBlI7mX7EPIk9qDuMyjMJYEz9xEi/nnnnzD/FGfaqyQ==","shasum":"e4240d2a42fdbd12a55a85c0ff9cbbc0e7b94cfa","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.12.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.12.1.tgz_1500255819295_0.16183634870685637"},"directories":{}},"2.12.2":{"name":"antd","version":"2.12.2","title":"Ant Design","description":"An enterprise-class UI design language and React-based implementation","homepage":"http://ant.design/","keywords":["ant","design","react","react-component","component","components","ui","framework","frontend"],"contributors":[{"name":"ant"}],"repository":{"type":"git","url":"git+https://github.com/ant-design/ant-design.git"},"bugs":{"url":"https://github.com/ant-design/ant-design/issues"},"main":"lib/index.js","module":"es/index.js","files":["dist","lib","es"],"typings":"lib/index.d.ts","license":"MIT","dependencies":{"array-tree-filter":"~1.0.0","babel-runtime":"6.x","classnames":"~2.2.0","create-react-class":"^15.5.3","css-animation":"^1.2.5","dom-closest":"^0.2.0","lodash.debounce":"^4.0.8","moment":"^2.18.1","omit.js":"^1.0.0","prop-types":"^15.5.7","rc-animate":"^2.3.6","rc-calendar":"~8.4.1","rc-cascader":"~0.11.3","rc-checkbox":"~2.0.3","rc-collapse":"~1.7.5","rc-dialog":"~6.5.10","rc-dropdown":"~1.4.11","rc-editor-mention":"~0.6.12","rc-form":"~1.4.0","rc-input-number":"~3.6.0","rc-menu":"~5.0.10","rc-notification":"~2.0.0","rc-pagination":"~1.10.0","rc-progress":"~2.1.2","rc-rate":"~2.1.1","rc-select":"~6.8.6","rc-slider":"~8.2.0","rc-steps":"~2.5.1","rc-switch":"~1.5.1","rc-table":"~5.4.0","rc-tabs":"~8.0.0","rc-time-picker":"~2.4.1","rc-tooltip":"~3.4.6","rc-tree":"~1.5.0","rc-tree-select":"~1.10.2","rc-upload":"~2.3.7","rc-util":"^4.0.4","react-lazy-load":"^3.0.10","react-slick":"~0.14.2","shallowequal":"^1.0.1","warning":"~3.0.0"},"devDependencies":{"@types/react":"^15.0.38","@types/react-dom":"~0.14.18","antd-demo-jest":"^1.3.0","antd-tools":"~1.6.0","babel-cli":"^6.18.0","babel-eslint":"^7.1.0","babel-jest":"^19.0.0","babel-plugin-import":"^1.0.0","babel-plugin-transform-runtime":"^6.23.0","babel-preset-es2015":"^6.18.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","bezier-easing":"^2.0.3","bisheng":"^0.24.0","bisheng-plugin-antd":"^0.15.0","bisheng-plugin-description":"^0.1.1","bisheng-plugin-react":"^0.5.0","bisheng-plugin-toc":"^0.4.0","color-standalone":"^0.11.6","cross-env":"^4.0.0","css-split-webpack-plugin":"^0.2.3","dekko":"^0.2.0","delegate":"^3.1.2","dora-plugin-upload":"^0.3.1","enquire.js":"^2.1.1","enzyme":"^2.6.0","enzyme-to-json":"^1.3.0","eslint":"^3.0.1","eslint-config-airbnb":"latest","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^5.0.1","eslint-plugin-markdown":"~1.0.0-beta.4","eslint-plugin-react":"^7.0.1","eslint-tinker":"^0.4.0","fetch-jsonp":"^1.0.3","glob":"^7.1.1","jest":"^20.0.4","jsonml.js":"^0.1.0","lint-staged":"^3.3.1","mockdate":"^2.0.1","moment-timezone":"^0.5.5","pre-commit":"^1.2.2","querystring":"^0.2.0","rc-queue-anim":"^1.0.1","rc-scroll-anim":"^1.0.3","rc-tween-one":"^1.1.2","react":"^15.0.0","react-color":"^2.11.7","react-copy-to-clipboard":"^4.0.1","react-document-title":"^2.0.1","react-dom":"^15.0.0","react-github-button":"^0.1.1","react-intl":"^2.0.1","react-sublime-video":"^0.2.0","react-test-renderer":"^15.5.4","reqwest":"^2.0.5","rimraf":"^2.5.4","stylelint":"^7.8.0","stylelint-config-standard":"^16.0.0","typescript":"~2.3.0","typescript-babel-jest":"^1.0.2","values.js":"^1.0.3","xhr2":"^0.1.3"},"scripts":{"test":"jest --config .jest.js","test-node":"jest --config .jest.node.js","test-all":"./scripts/test-all.sh","lint":"npm run lint:ts && npm run lint:es && npm run lint:demo && npm run lint:style","lint:ts":"npm run tsc && antd-tools run ts-lint","lint:es":"eslint tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint:demo":"cross-env RUN_ENV=DEMO eslint components/*/demo/*.md --ext '.md'","lint:style":"stylelint \"{site,components}/**/*.less\" --syntax less","lint-fix:ts":"npm run tsc && antd-tools run ts-lint-fix","lint-fix":"npm run lint-fix:code && npm run lint-fix:demo","lint-fix:code":"eslint --fix tests site scripts components ./.eslintrc.js ./webpack.config.js --ext '.js,.jsx'","lint-fix:demo":"eslint-tinker ./components/*/demo/*.md","dist":"antd-tools run dist","compile":"antd-tools run compile","tsc":"tsc","start":"bisheng start -c ./site/bisheng.config.js --no-livereload","site":"bisheng build --ssr -c ./site/bisheng.config.js","deploy":"antd-tools run clean && npm run site && bisheng gh-pages --push-only","pub":"antd-tools run pub","prepublish":"antd-tools run guard","pre-publish":"npm run test-all && node ./scripts/prepub","authors":"git log --format='%aN <%aE>' | sort -u | grep -v 'users.noreply.github.com' | grep -v 'gitter.im' | grep -v '.local>' | grep -v 'alibaba-inc.com' | grep -v 'alipay.com' | grep -v 'taobao.com' > AUTHORS.txt","lint-staged":"lint-staged","lint-staged:ts":"tsc && node node_modules/tslint/bin/tslint -c node_modules/antd-tools/lib/tslint.json","lint-staged:es":"eslint ./.eslintrc.js ./webpack.config.js","lint-staged:demo":"cross-env RUN_ENV=DEMO eslint --ext '.md'"},"lint-staged":{"components/**/*.tsx":["lint-staged:ts"],"{tests,site,scripts,components}/**/*.{js,jsx}":["lint-staged:es"],"{site,components}/**/*.less":"stylelint --syntax less","components/*/demo/*.md":["lint-staged:demo"]},"pre-commit":["lint-staged"],"gitHead":"31c93e2dcc4587fbaf2ac5097f0785c651cb0a63","_id":"antd@2.12.2","_npmVersion":"5.3.0","_nodeVersion":"6.11.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"integrity":"sha512-mZJTSg2RcBEXHJnUYNZIttcXNAjupunR57qXfyGoHSsJ0pLKOVsfu8HsBVxizkcNVxuJYlfLLIGJ7rparFNsUA==","shasum":"bc48771964c4055c00ee371b4482b8b98ad4ac01","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/antd/-/antd-2.12.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/antd-2.12.2.tgz_1500710445609_0.5044402186758816"},"directories":{}}},"name":"antd","contributors":[{"name":"ant"}],"time":{"modified":"2017-07-22T08:00:46.066Z","created":"2015-06-23T08:52:43.206Z","0.0.1":"2015-06-23T08:52:43.206Z","0.1.0-pre":"2015-07-03T04:09:16.675Z","0.1.0-beta2":"2015-07-16T16:25:39.790Z","0.7.0-beta1":"2015-07-17T09:32:57.672Z","0.7.0-beta2":"2015-07-17T12:37:02.079Z","0.7.0-beta3":"2015-07-20T14:36:02.788Z","0.7.0":"2015-07-21T04:08:43.822Z","0.7.1":"2015-07-22T07:33:09.454Z","0.7.2":"2015-07-27T09:24:06.573Z","0.7.3-beta1":"2015-07-27T11:26:06.938Z","0.7.3-beta2":"2015-07-28T04:27:38.978Z","0.7.3-beta3":"2015-07-28T06:03:26.111Z","0.7.3-beta4":"2015-07-28T07:20:51.691Z","0.7.3-beta5":"2015-07-29T05:50:30.087Z","0.7.3-beta6":"2015-07-29T06:01:47.606Z","0.7.3":"2015-07-30T09:20:44.961Z","0.8.0-beta1":"2015-08-11T12:27:56.856Z","0.8.0-beta2":"2015-08-14T14:29:48.349Z","0.8.0-beta3":"2015-08-19T03:49:00.336Z","0.8.0-beta4":"2015-08-19T06:11:22.784Z","0.8.0-beta5":"2015-08-20T12:54:16.687Z","0.8.0-beta6":"2015-08-24T07:18:05.650Z","0.8.0-beta7":"2015-08-24T13:16:30.611Z","0.8.0":"2015-08-25T09:16:29.149Z","0.8.1-beta1":"2015-08-27T15:57:56.370Z","0.9.0-beta1":"2015-09-01T06:25:45.765Z","0.9.0-beta2":"2015-09-01T14:21:12.290Z","0.9.0-beta3":"2015-09-07T04:29:30.091Z","0.9.0-beta4":"2015-09-08T10:00:13.071Z","0.9.0-beta5":"2015-09-08T10:19:16.682Z","0.9.0-beta6":"2015-09-08T10:27:10.717Z","0.9.0-beta7":"2015-09-09T06:58:46.037Z","0.9.0-beta8":"2015-09-10T04:22:49.872Z","0.9.0-beta9":"2015-09-10T14:04:08.085Z","0.9.0-beta10":"2015-09-12T03:11:20.971Z","0.9.0":"2015-09-13T16:48:24.395Z","0.9.1-beta1":"2015-09-14T05:38:52.872Z","0.9.1-beta2":"2015-09-15T05:38:02.807Z","0.9.1-beta3":"2015-09-16T04:21:13.117Z","0.9.1-beta4":"2015-09-16T04:36:15.089Z","0.9.1-beta5":"2015-09-16T10:04:43.082Z","0.9.1-beta6":"2015-09-16T10:49:59.327Z","0.9.1-beta7":"2015-09-18T15:33:53.427Z","0.9.1-beta8":"2015-09-19T01:38:07.404Z","0.9.1-beta9":"2015-09-19T09:45:31.884Z","0.9.1-beta10":"2015-09-20T05:57:02.357Z","0.9.1-beta11":"2015-09-21T05:46:16.564Z","0.9.1-beta12":"2015-09-23T07:29:42.654Z","0.9.1-beta13":"2015-09-24T10:41:11.084Z","0.9.1":"2015-09-25T17:09:49.162Z","0.10.0-beta2":"2015-10-20T09:15:40.129Z","0.10.0-beta3":"2015-10-21T08:28:26.389Z","0.10.0-beta4":"2015-10-21T13:32:35.745Z","0.10.0-beta5":"2015-10-22T09:29:01.977Z","0.10.0-beta6":"2015-10-22T11:09:51.117Z","0.10.0-beta7":"2015-10-26T09:24:00.346Z","0.9.2":"2015-10-26T09:30:52.443Z","0.10.0-beta8":"2015-10-28T11:09:44.809Z","0.10.0-beta9":"2015-11-02T09:07:59.130Z","0.9.3":"2015-11-03T03:07:04.592Z","0.10.0-beta10p":"2015-11-03T05:52:07.020Z","0.10.0-beta10":"2015-11-03T05:53:18.148Z","0.10.0-beta11":"2015-11-03T07:32:22.121Z","0.10.0-beta12":"2015-11-03T07:47:30.870Z","0.10.0-beta13":"2015-11-03T08:00:16.721Z","0.10.0-beta14":"2015-11-03T08:03:31.514Z","0.10.0-beta15":"2015-11-03T11:58:39.211Z","0.10.0-beta16":"2015-11-03T12:07:47.926Z","0.9.4":"2015-11-04T02:59:42.278Z","0.10.0-beta17":"2015-11-04T09:24:27.628Z","0.10.0-beta18":"2015-11-04T10:08:06.967Z","0.10.0-beta19":"2015-11-04T15:15:57.146Z","0.10.0-beta20":"2015-11-05T03:06:50.836Z","0.10.0-beta21":"2015-11-05T09:50:47.442Z","0.10.0-beta22":"2015-11-06T14:33:18.779Z","0.9.5":"2015-11-09T08:57:09.425Z","0.10.0-beta23":"2015-11-10T07:56:29.230Z","0.10.0-beta25":"2015-11-15T13:42:01.963Z","0.10.0-beta26":"2015-11-16T08:19:15.885Z","0.10.0-beta27":"2015-11-17T06:37:56.565Z","0.10.0-beta28":"2015-11-18T10:23:06.860Z","0.10.0-beta29":"2015-11-19T11:45:09.738Z","0.10.0-beta30":"2015-11-20T03:07:37.709Z","0.10.0":"2015-11-20T07:21:45.722Z","0.10.1":"2015-11-20T13:51:57.073Z","0.10.2":"2015-11-25T10:12:33.919Z","0.10.3":"2015-11-26T17:01:17.982Z","0.10.4":"2015-11-30T07:27:53.419Z","0.11.0-beta1":"2015-12-16T06:57:54.889Z","0.11.0-beta2":"2015-12-22T07:08:41.692Z","0.11.0-beta3":"2015-12-23T13:04:01.271Z","0.11.0-beta4":"2015-12-25T07:29:57.276Z","0.11.0-beta5":"2015-12-25T09:55:02.059Z","0.11.0-beta6":"2015-12-25T16:58:51.071Z","0.11.0":"2015-12-28T07:28:31.749Z","0.11.1":"2015-12-29T09:40:42.599Z","0.12.0-beta1":"2015-12-31T07:19:03.088Z","0.12.0-beta2":"2016-01-02T09:04:32.433Z","0.11.2":"2016-01-02T17:19:56.728Z","0.12.0-beta3":"2016-01-02T17:28:39.934Z","0.10.5":"2016-01-04T07:05:51.815Z","0.12.0-beta4":"2016-01-04T11:24:20.174Z","0.12.0-beta5":"2016-01-06T03:46:46.322Z","0.12.0-beta6":"2016-01-07T13:06:19.210Z","0.12.0-beta7":"2016-01-11T03:01:50.569Z","0.12.0-beta8":"2016-01-12T06:26:52.738Z","0.12.0-beta9":"2016-01-14T11:16:11.691Z","0.12.0-beta10":"2016-01-14T11:24:10.541Z","0.12.0-beta.10":"2016-01-14T15:24:24.403Z","0.12.0-beta.11":"2016-01-15T08:14:14.281Z","0.12.0-beta.12":"2016-01-15T08:36:12.640Z","0.12.0-beta.13":"2016-01-15T09:44:52.096Z","0.12.0-beta.14":"2016-01-15T12:15:57.773Z","0.12.0-beta.15":"2016-01-18T07:50:55.133Z","0.11.3":"2016-01-19T03:35:32.161Z","0.12.0-beta.16":"2016-01-19T11:05:06.156Z","0.12.0-beta.17":"2016-01-20T03:53:05.916Z","0.12.0-beta.18":"2016-01-20T04:24:26.285Z","0.12.0-beta.19":"2016-01-21T12:42:03.395Z","0.12.0-beta.20":"2016-01-24T09:20:58.365Z","0.12.0-beta.21":"2016-01-25T08:07:42.461Z","0.12.0-beta.22":"2016-01-25T13:08:15.187Z","0.12.0-beta.23":"2016-01-26T07:43:11.641Z","0.12.0-beta.24":"2016-01-26T08:55:23.705Z","0.12.0-beta.25":"2016-01-26T09:04:29.345Z","0.12.0-beta.26":"2016-01-26T11:56:11.567Z","0.12.0-beta.27":"2016-01-27T04:38:52.246Z","0.12.0-beta.28":"2016-01-27T06:36:10.413Z","0.12.0-beta.29":"2016-01-27T08:25:51.983Z","0.12.0-beta.30":"2016-01-28T04:39:56.976Z","0.12.0-beta.31":"2016-01-28T13:54:44.414Z","0.12.0-beta.32":"2016-01-30T08:58:14.922Z","0.12.0-beta.33":"2016-01-30T11:02:23.309Z","0.12.0-beta.34":"2016-02-01T06:09:12.355Z","0.12.0":"2016-02-01T07:24:38.811Z","0.12.1":"2016-02-03T13:59:08.313Z","0.12.2":"2016-02-19T03:42:59.740Z","0.12.3":"2016-02-19T09:32:30.094Z","0.12.4":"2016-02-22T16:08:54.546Z","0.12.5":"2016-02-25T15:39:42.234Z","0.12.6":"2016-03-02T15:19:58.128Z","0.12.7":"2016-03-02T15:44:06.954Z","0.12.8":"2016-03-05T16:24:03.120Z","0.12.9":"2016-03-11T08:57:40.337Z","0.12.10":"2016-03-11T09:58:11.052Z","0.12.11-beta":"2016-03-14T09:13:31.049Z","0.12.11":"2016-03-16T08:47:52.458Z","0.12.12":"2016-03-18T08:29:07.093Z","0.12.13":"2016-03-29T05:46:36.244Z","1.0.0-beta":"2016-04-01T09:39:59.086Z","1.0.0-beta.0":"2016-04-01T09:53:24.955Z","1.0.0-beta.1":"2016-04-08T10:19:33.469Z","1.0.0-beta.2":"2016-04-12T08:57:04.404Z","0.12.14":"2016-04-13T08:56:52.546Z","1.0.0-beta.3":"2016-04-17T10:28:21.060Z","0.12.15":"2016-04-21T04:35:10.019Z","0.12.16":"2016-04-27T09:26:15.088Z","1.0.0-beta.4":"2016-04-27T10:12:50.187Z","1.0.0-beta.5":"2016-04-27T13:46:47.098Z","1.0.0-beta.6":"2016-04-29T03:15:22.772Z","1.0.0-beta.7":"2016-04-29T07:32:34.720Z","1.0.0-beta.8":"2016-05-05T07:19:54.494Z","0.12.17":"2016-05-05T07:52:44.882Z","1.0.0-beta.9":"2016-05-05T08:54:01.796Z","1.0.0-beta.10":"2016-05-10T06:47:28.730Z","1.0.0":"2016-05-10T17:37:42.149Z","1.0.1":"2016-05-11T10:04:16.617Z","1.1.0":"2016-05-18T13:11:26.120Z","1.1.1":"2016-05-27T02:43:36.762Z","1.2.0":"2016-05-27T03:20:06.462Z","1.2.1":"2016-05-27T10:17:31.141Z","1.3.0":"2016-06-02T15:09:26.696Z","1.3.1":"2016-06-06T03:18:30.153Z","1.3.2":"2016-06-06T07:37:33.650Z","1.4.0":"2016-06-13T02:12:33.869Z","1.4.1":"2016-06-13T08:19:03.823Z","1.5.0":"2016-06-17T10:29:51.397Z","1.5.1":"2016-06-21T05:38:02.740Z","1.6.0":"2016-06-24T05:55:16.565Z","1.6.1":"2016-06-24T09:51:43.554Z","1.6.2":"2016-06-27T06:58:54.320Z","1.6.3":"2016-07-04T02:45:08.767Z","1.6.4":"2016-07-08T03:54:00.136Z","1.6.5":"2016-07-16T09:08:50.450Z","1.7.0":"2016-07-30T02:03:16.038Z","1.8.0":"2016-08-08T02:56:50.337Z","1.9.0":"2016-08-15T11:18:09.998Z","1.9.1":"2016-08-16T08:08:23.854Z","1.10.0":"2016-08-20T13:39:59.412Z","1.11.0":"2016-09-01T10:14:08.564Z","2.0.0-beta.0":"2016-09-09T08:05:59.628Z","2.0.0-beta.1":"2016-09-10T09:37:50.324Z","2.0.0-beta.2":"2016-09-12T10:01:03.589Z","2.0.0-beta.3":"2016-09-14T04:59:42.356Z","1.11.1":"2016-09-14T07:06:14.834Z","2.0.0-beta.4":"2016-09-14T09:56:41.798Z","2.0.0-beta.5":"2016-09-18T01:51:17.598Z","2.0.0-beta.6":"2016-09-18T02:26:11.495Z","2.0.0-beta.7":"2016-09-19T02:25:02.226Z","2.0.0-beta.8":"2016-09-19T07:28:57.242Z","2.0.0-beta.9":"2016-09-19T09:18:12.453Z","2.0.0-beta.10":"2016-09-19T09:58:06.941Z","2.0.0-beta.11":"2016-09-22T09:15:28.857Z","2.0.0-beta.12":"2016-09-26T02:29:19.590Z","1.11.2":"2016-09-26T08:00:38.073Z","2.0.0-beta.13":"2016-09-27T05:53:18.810Z","2.0.0":"2016-09-28T05:56:59.180Z","2.0.1":"2016-10-01T00:31:42.322Z","2.1.0":"2016-10-16T08:18:48.096Z","2.2.0":"2016-10-28T10:37:14.868Z","2.2.1":"2016-11-02T05:41:53.446Z","2.3.0":"2016-11-06T07:14:13.094Z","2.3.1":"2016-11-07T04:08:32.543Z","2.3.2":"2016-11-09T07:27:00.962Z","2.4.0":"2016-11-11T11:32:00.026Z","2.4.1":"2016-11-11T14:31:23.801Z","2.4.2":"2016-11-13T08:36:51.097Z","2.4.3":"2016-11-17T14:25:15.467Z","1.11.3":"2016-11-23T06:10:13.756Z","1.11.4":"2016-11-24T10:09:09.042Z","2.5.0":"2016-11-26T06:57:02.441Z","2.5.1":"2016-12-04T09:22:18.176Z","2.5.2":"2016-12-10T13:42:41.533Z","2.5.3":"2016-12-24T08:02:03.082Z","2.6.0":"2017-01-01T18:33:33.471Z","2.6.1":"2017-01-06T10:19:14.543Z","1.11.5":"2017-01-09T03:41:02.238Z","1.11.6":"2017-01-12T10:05:45.263Z","2.6.2":"2017-01-14T13:52:56.930Z","2.6.3":"2017-01-14T16:35:34.669Z","2.6.4":"2017-01-20T16:40:11.013Z","2.7.0":"2017-02-04T10:29:12.170Z","2.7.1":"2017-02-10T12:39:34.992Z","2.7.2":"2017-02-17T10:10:25.430Z","2.7.3":"2017-02-27T03:37:58.492Z","2.7.4":"2017-02-28T14:04:49.504Z","2.8.0":"2017-03-06T10:27:18.685Z","2.8.1":"2017-03-11T04:41:35.308Z","2.8.2":"2017-03-19T07:56:55.781Z","2.8.3":"2017-03-27T02:02:24.773Z","2.9.0":"2017-04-02T06:50:35.571Z","2.9.1":"2017-04-08T20:12:49.707Z","2.9.2":"2017-04-22T13:56:00.081Z","2.9.3":"2017-04-24T09:57:52.917Z","2.10.0":"2017-05-05T10:16:04.431Z","2.10.1":"2017-05-14T08:22:44.558Z","2.10.2":"2017-05-23T02:42:29.221Z","2.10.3":"2017-05-31T11:05:22.623Z","2.10.4":"2017-05-31T14:44:02.547Z","2.11.0":"2017-06-09T12:11:15.590Z","2.12.0-beta1":"2017-06-15T08:52:46.296Z","2.11.1":"2017-06-18T16:27:46.429Z","2.11.2":"2017-06-25T07:15:52.889Z","2.12.0":"2017-07-08T05:14:02.398Z","2.12.1-beta.0":"2017-07-12T10:01:50.923Z","2.12.1-beta.1":"2017-07-13T04:23:06.754Z","2.12.1-beta.2":"2017-07-14T04:02:30.657Z","2.12.1-beta.3":"2017-07-14T04:26:46.725Z","2.12.1":"2017-07-17T01:43:39.999Z","2.12.2":"2017-07-22T08:00:46.066Z"},"readmeFilename":"README.md","homepage":"http://ant.design/"}