{"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"keywords":["react","react-component","react-form","form"],"dist-tags":{"latest":"1.4.3"},"author":{"name":"yiminghe@gmail.com"},"description":"React High Order Form Component","readme":"# rc-form\n\nReact High Order Form Component.\n\n[![NPM version][npm-image]][npm-url]\n[![build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![gemnasium deps][gemnasium-image]][gemnasium-url]\n[![node version][node-image]][node-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: http://img.shields.io/npm/v/rc-form.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/rc-form\n[travis-image]: https://img.shields.io/travis/react-component/form.svg?style=flat-square\n[travis-url]: https://travis-ci.org/react-component/form\n[coveralls-image]: https://img.shields.io/coveralls/react-component/form.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/react-component/form?branch=master\n[gemnasium-image]: http://img.shields.io/gemnasium/react-component/form.svg?style=flat-square\n[gemnasium-url]: https://gemnasium.com/react-component/form\n[node-image]: https://img.shields.io/badge/node.js-%3E=_0.10-green.svg?style=flat-square\n[node-url]: http://nodejs.org/download/\n[download-image]: https://img.shields.io/npm/dm/rc-form.svg?style=flat-square\n[download-url]: https://npmjs.org/package/rc-form\n\n## Development\n\n```\nnpm install\nnpm start\nopen http://localhost:8000/examples/\n```\n\n## Feature\n\n* Support react.js and even react-native\n* Validate fields with [async-validator](https://github.com/yiminghe/async-validator/)\n\n## Install\n\n[![rc-form](https://nodei.co/npm/rc-form.png)](https://npmjs.org/package/rc-form)\n\n## Usage\n\n```js\nimport { createForm } from 'rc-form';\n\nclass Form extends React.Component {\n  submit = () => {\n    this.props.form.validateFields((error, value) => {\n      console.log(error, value);\n    });\n  }\n\n  render() {\n    let errors;\n    const { getFieldProps, getFieldError } = this.props.form;\n    return (\n      <div>\n        <input {...getFieldProps('normal')}/>\n        <input {...getFieldProps('required', {\n          onChange(){}, // have to write original onChange here if you need\n          rules: [{required: true}],\n        })}/>\n        {(errors = getFieldError('required')) ? errors.join(',') : null}\n        <button onClick={this.submit}>submit</button>\n      </div>\n    );\n  }\n}\n\nexport createForm()(Form);\n```\n\nOr a quicker version:\n\n```js\nimport { createForm } from 'rc-form';\n\nclass Form extends React.Component {\n  componentWillMount() {\n    this.requiredDecorator = this.props.form.getFieldDecorator('required', {\n      rules: [{required: true}],\n    });\n  }\n\n  submit = () => {\n    this.props.form.validateFields((error, value) => {\n      console.log(error, value);\n    });\n  }\n\n  render() {\n    let errors;\n    const { getFieldError } = this.props.form;\n    return (\n      <div>\n        {this.requiredDecorator(\n          <input onChange={\n            // can still write your own onChange\n          />\n        )}\n        {(errors = getFieldError('required')) ? errors.join(',') : null}\n        <button onClick={this.submit}>submit</button>\n      </div>\n    );\n  }\n}\n\nexport createForm()(Form);\n```\n\n## createForm(formOption): Function\n\n| Option    | Description                              | Type       | Default |\n|-----------|------------------------------------------|------------|---------|\n| formOption.validateMessages | Preseted messages of [async-validator](https://github.com/yiminghe/async-validator) | Object | {} |\n| formOption.mapProps | Get new props transfered to WrappedComponent. | (props): Object | props => props |\n| formOption.onFieldsChange | Called when field changed, you can dispatch fields to redux store. | (props, changedFields): void | NOOP |\n| formOption.onValuesChange | Called when value changed. | (props, changedValues): void | NOOP |\n| formOption.mapPropsToFields | Convert value from props to fields. Used for read fields from redux store. | (props): Object | NOOP |\n| formOption.withRef(deprecated) | Maintain an ref for wrapped component instance, use `refs.wrappedComponent` to access. | boolean | false |\n\n### Note: use wrappedComponentRef instead of withRef after rc-form@1.4.0\n\n```jsx\nclass Form extends React.Component { ... }\n\n// deprecated\nconst EnhancedForm = createForm({ withRef: true })(Form);\n<EnhancedForm ref=\"form\" />\nthis.refs.form.refs.wrappedComponent // => The instance of Form\n\n// Recommended\nconst EnhancedForm = createForm()(Form);\n<EnhancedForm wrappedComponentRef={(inst) => this.formRef = inst} />\nthis.formRef // => The instance of Form\n```\n\n## createForm() will return another function\n\n### function(WrappedComponent: React.Component): React.Component\n\nWill pass an object as prop form with the following members to WrappedComponent:\n\n### getFieldProps(name, option): Object\n\nWill create props which can be set on a input/InputComponent which support value and onChange interface.\n\nAfter set, this will create a binding with this input.\n\n```jsx\n<form>\n  <input {...getFieldProps('name', { ...options })} />\n</form>\n```\n\n#### name: String\n\nThis input's unique name.\n\n#### option: Object\n\n| Option    | Description                              | Type       | Default |\n|-----------|------------------------------------------|------------|---------|\n| option.exclusive(deprecated) | Whether set value exclusively. Used with radio. | boolean | false |\n| option.valuePropName | Prop name of component's value field, eg: checkbox should be set to `checked` ... | String | 'value' |\n| option.getValueProps | Get the component props according to field value. | (value): Object | (value) => ({ value }) |\n| option.initialValue | Initial value of current component. | any | - |\n| option.normalize | Return normalized value. | (value, prevValue, allValues): Object | - |\n| option.trigger | Event which is listened to collect form data. | String | 'onChange' |\n| option.validateTrigger | Event which is listened to validate. Set to falsy to only validate when call props.validateFields. | String|String[] | 'onChange' |\n| option.rules | Validator rules. see: [async-validator](https://github.com/yiminghe/async-validator) | Object[] | - |\n| option.validateFirst | Whether stop validate on first rule of error for this field. | boolean | false |\n| option.fieldNameProp | Where to store the `name` argument of `getFieldProps`. | String | - |\n| option.fieldMetaProp | Where to store the meta data of `getFieldProps`. | String | - |\n| option.validate | | Object[] | - |\n| option.validate[n].trigger | Event which is listened to validate. Set to falsy to only validate when call props.validateFields. | String|String[] | 'onChange' |\n| option.validate[n].rules | Validator rules. see: [async-validator](https://github.com/yiminghe/async-validator) | Object[] | - |\n| option.getValueFromEvent | Specify how to get value from event. | (e): any | See below |\n\n```js\nfunction (e) {\n  if (!e || !e.target) {\n    return e;\n  }\n  const { target } = e;\n  return target.type === 'checkbox' ? target.checked : target.value;\n}\n```\n\n##### Tips\n\n```js\n{\n  validateTrigger: 'onBlur',\n  rules: [{required: true}],\n}\n// is the shorthand of\n{\n  validate: [{\n    trigger: 'onBlur',\n    rules: [required: true],\n  }],\n}\n```\n\n### getFieldDecorator(name:String, option: Object): (React.Node): React.Node\n\nSimilar to `getFieldProps`, but add some helper warnings and you can write onXX directly inside React.Node props:\n\n```jsx\n<form>\n  {getFieldDecorator('name', otherOptions)(<input />)}\n</form>\n```\n\n### getFieldsValue([fieldNames: String[]])\n\nGet fields value by fieldNames.\n\n### getFieldValue(fieldName: String)\n\nGet field value by fieldName.\n\n### getFieldInstance(fieldName: String)\n\nGet field react public instance by fieldName.\n\n### setFieldsValue(obj: Object)\n\nSet fields value by kv object.\n\n### setFieldsInitialValue(obj: Object)\n\nSet fields initialValue by kv object. use for reset and initial display/value.\n\n### setFields(obj: Object)\n\nSet fields by kv object. each field can contain errors and value member.\n\n### validateFields([fieldNames: String[]], [options: Object], callback: Function(errors, values))\n\nValidate and get fields value by fieldNames.\n\noptions is the same as validate method of [async-validator](https://github.com/yiminghe/async-validator).\nAnd add `force` and `scroll`. `scroll` is the same as [dom-scroll-into-view's function parameter `config`](https://github.com/yiminghe/dom-scroll-into-view#function-parameter).\n\n#### options.force: Boolean\n\nDefaults to false. Whether to validate fields which have been validated(caused by validateTrigger).\n\n### getFieldsError(names): Object{ [name]: String[] }\n\nGet inputs' validate errors.\n\n### getFieldError(name): String[]\n\nGet input's validate errors.\n\n### isFieldValidating(name: String): Bool\n\nWhether this input is validating.\n\n### isFieldsValidating(names: String[]): Bool\n\nWhether one of the inputs is validating.\n\n### isFieldTouched(name: String): Bool\n\nWhether this input's value had been change.\n\n### isFieldsTouched(names: String[]): Bool\n\nWhether one of the inputs' values had been change.\n\n### isSubmitting(): Bool\n\nWhether the form is submitting.\n\n### submit(callback: Function)\n\nCause isSubmitting to return true, after callback called, isSubmitting return false.\n\n### resetFields([names: String[]])\n\nReset specified inputs. Defaults to all.\n\n\n## rc-form/lib/createDOMForm(formOption): Function\n\ncreateDOMForm enhancement, support props.form.validateFieldsAndScroll\n\n### props.form.validateFieldsAndScroll([fieldNames: String[]], [options: Object], callback: Function(errors, values))\n\nprops.form.validateFields enhancement, support scroll to the first invalid form field\n\n#### options.container: HTMLElement\n\nDefaults to first scrollable container of form field(until document).\n\n\n## Notes\n\n- Do not use stateless function component inside Form component: https://github.com/facebook/react/pull/6534\n\n- you can not set same prop name as the value of validateTrigger/trigger for getFieldProps\n\n```js\n<input {...getFieldProps('change',{\n  onChange: this.iWantToKnow // you must set onChange here or use getFieldDecorator to write inside <input>\n})}>\n```\n\n- you can not use ref prop for getFieldProps\n\n```js\n<input {...getFieldProps('ref')} />\n\nthis.props.form.getFieldInstance('ref') // use this to get ref\n```\n\nor\n\n```js\n<input {...getFieldProps('ref',{\n  ref: this.saveRef // use function here or use getFieldDecorator to write inside <input> (only allow function)\n})} />\n```\n\n## Test Case\n\n```\nnpm test\nnpm run chrome-test\n```\n\n## Coverage\n\n```\nnpm run coverage\n```\n\nopen coverage/ dir\n\n## License\n\nrc-form is released under the MIT license.\n","repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"users":{"shakakira":true,"jimjin":true,"jian263994241":true},"bugs":{"url":"https://github.com/react-component/form/issues"},"license":"MIT","versions":{"0.0.0":{"name":"rc-form","version":"0.0.0","description":"form ui component for react","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":"","repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"0.3.x","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x"},"pre-commit":["lint"],"gitHead":"84566280e5fdeecbac7604f9805015acdcc7021f","_id":"rc-form@0.0.0","_shasum":"0a9f4de53c22dcc3a4c0c6d3e37631a17764121b","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"0a9f4de53c22dcc3a4c0c6d3e37631a17764121b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.0.0.tgz"},"directories":{}},"0.1.0":{"name":"rc-form","version":"0.1.0","description":"form ui component for react","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":"","repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"0.3.x","pre-commit":"1.x","rc-select":"^5.4.0","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"dd27052405645b236694e89af93c3d97419cc7b6","_id":"rc-form@0.1.0","_shasum":"371a69f21136832477bbc27e07322cb617ae3c6c","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"371a69f21136832477bbc27e07322cb617ae3c6c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.1.0.tgz"},"directories":{}},"0.2.0":{"name":"rc-form","version":"0.2.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":"","repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"0.3.x","pre-commit":"1.x","rc-select":"^5.4.0","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-dom":"0.14.x","react-redux":"^4.0.0","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"7b8ced9994d360bb20b91c8083d7b7df5d119012","_id":"rc-form@0.2.0","_shasum":"b1abed2bf96705e71589993bb520082d501f79a0","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b1abed2bf96705e71589993bb520082d501f79a0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.2.0.tgz"},"directories":{}},"0.3.0":{"name":"rc-form","version":"0.3.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":"","repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","pre-commit":"1.x","rc-select":"^5.4.0","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"740d9e62b14ee3b2b0b3d071a6410dcb9e24c514","_id":"rc-form@0.3.0","_shasum":"1d0fe133ceaac36f968f401fc1d0f9f8b9225acf","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"1d0fe133ceaac36f968f401fc1d0f9f8b9225acf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.3.0.tgz"},"directories":{}},"0.3.1":{"name":"rc-form","version":"0.3.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":"","repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-select":"^5.4.0","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"aed6bc219a6752c9cafe2bb5c579c2ae15747858","_id":"rc-form@0.3.1","_shasum":"fc4a9cd8d1791702ff1de8e853cb5671b76499b2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fc4a9cd8d1791702ff1de8e853cb5671b76499b2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.3.1.tgz"},"directories":{}},"0.4.0":{"name":"rc-form","version":"0.4.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":"","repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-select":"^5.4.0","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"acba5885e660d6a14ed6c8174ebec8456315d8cf","_id":"rc-form@0.4.0","_shasum":"d4de075aee7530a2776b08c573b1b6ae3c1e9066","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d4de075aee7530a2776b08c573b1b6ae3c1e9066","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.4.0.tgz"},"directories":{}},"0.4.1":{"name":"rc-form","version":"0.4.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-select":"^5.4.0","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"b3293a229c89bd03507de54d3247f816dc396deb","_id":"rc-form@0.4.1","_shasum":"6f3fbbde35824eaa1708b68362f0f6d2e3b3214f","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"6f3fbbde35824eaa1708b68362f0f6d2e3b3214f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.4.1.tgz"},"directories":{}},"0.4.2":{"name":"rc-form","version":"0.4.2","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-select":"^5.4.0","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"a5e9aff82ee4bb2a4b107786ee0b9aa026a1b500","_id":"rc-form@0.4.2","_shasum":"fd65392e2f12ee55bac878414e190b95e26c50fa","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fd65392e2f12ee55bac878414e190b95e26c50fa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.4.2.tgz"},"directories":{}},"0.5.0":{"name":"rc-form","version":"0.5.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"cc98036ae0091cbb50186ace02b9938ce2bf670f","_id":"rc-form@0.5.0","_shasum":"2779b5e1ab34cba2a6cd9cc7b4eafd313148a84a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2779b5e1ab34cba2a6cd9cc7b4eafd313148a84a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.5.0.tgz"},"directories":{}},"0.5.1":{"name":"rc-form","version":"0.5.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"93fb78b1d32fe3a9da039e8ac9b0c17b43ca4742","_id":"rc-form@0.5.1","_shasum":"1408ba88e3d80f1eadae221dd16819a31f7dee74","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"1408ba88e3d80f1eadae221dd16819a31f7dee74","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.5.1.tgz"},"directories":{}},"0.6.0":{"name":"rc-form","version":"0.6.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"d488a18e55545c5ff166fc7ff108da86be532230","_id":"rc-form@0.6.0","_shasum":"a51bd583cbb22b4e2cc5da20d81b5a6ccb382ddf","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a51bd583cbb22b4e2cc5da20d81b5a6ccb382ddf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.6.0.tgz"},"directories":{}},"0.7.0":{"name":"rc-form","version":"0.7.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"bc7f888813ad548813621ec559a7a3a6aa258ea9","_id":"rc-form@0.7.0","_shasum":"03fa75e2fb05d03a85dc2a790f3ad849ecaf2912","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"03fa75e2fb05d03a85dc2a790f3ad849ecaf2912","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.7.0.tgz"},"directories":{}},"0.7.1":{"name":"rc-form","version":"0.7.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"d1c5e681e1233030631825fcba8abe8c4c298061","_id":"rc-form@0.7.1","_shasum":"8b6059eaa97b9a5a1a8c24e436cf529da63ebe9a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8b6059eaa97b9a5a1a8c24e436cf529da63ebe9a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.7.1.tgz"},"directories":{}},"0.7.2":{"name":"rc-form","version":"0.7.2","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"b53881c8538b840d73a79f0d3d78fbe9df0ee5d4","_id":"rc-form@0.7.2","_shasum":"eb2cafbefc396d8515c1e032fb6b15d3150b19b3","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"eb2cafbefc396d8515c1e032fb6b15d3150b19b3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.7.2.tgz"},"directories":{}},"0.7.3":{"name":"rc-form","version":"0.7.3","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.10.4","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.3.5","hoist-non-react-statics":"^1.0.3"},"gitHead":"ec9c7e10c0a080d44fbb8d9033b2c5c38b46191a","_id":"rc-form@0.7.3","_shasum":"48035d915ed8bb7d76521a27ba9158ab8cfc496e","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"48035d915ed8bb7d76521a27ba9158ab8cfc496e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.7.3.tgz"},"directories":{}},"0.8.0":{"name":"rc-form","version":"0.8.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.4.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"fb501096484403fc5a30455c63195cae2f03d949","_id":"rc-form@0.8.0","_shasum":"67d0c639bf1a983f6a7d68c5be9eb2f9146cecd4","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"67d0c639bf1a983f6a7d68c5be9eb2f9146cecd4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.8.0.tgz"},"directories":{}},"0.9.0":{"name":"rc-form","version":"0.9.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.4.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"14879217b307afe354a0c2e5342dcb830f35669f","_id":"rc-form@0.9.0","_shasum":"0a34e2e76b9e4294821653dff8b3161d8d6f0588","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"0a34e2e76b9e4294821653dff8b3161d8d6f0588","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.9.0.tgz"},"directories":{}},"0.9.1":{"name":"rc-form","version":"0.9.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.4.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"c5db5fe148c9b8a87804c65766d3a05a8716c1d4","_id":"rc-form@0.9.1","_shasum":"50ae72512d037a40fc67ade98c3a4fcbdbc5b478","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"50ae72512d037a40fc67ade98c3a4fcbdbc5b478","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.9.1.tgz"},"directories":{}},"0.10.0":{"name":"rc-form","version":"0.10.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.4.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"c7751475559b71f6a641aca5be8ee9c3401c73cd","_id":"rc-form@0.10.0","_shasum":"61c898555c04a10a65c2ddb1127fd855bd100ec2","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"61c898555c04a10a65c2ddb1127fd855bd100ec2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.10.0.tgz"},"directories":{}},"0.10.1":{"name":"rc-form","version":"0.10.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.4.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"c866d8420c3c989e1fca869612c9226e95102751","_id":"rc-form@0.10.1","_shasum":"5d0a7561646b81fda21d450a3475451ae24a9bef","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5d0a7561646b81fda21d450a3475451ae24a9bef","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.10.1.tgz"},"directories":{}},"0.10.2":{"name":"rc-form","version":"0.10.2","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.4.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"ee4f868b4f6083a97a0a7183254706efe7ed59e8","_id":"rc-form@0.10.2","_shasum":"ddbd2bfe8425cde42719a764d23a9f44460aff78","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"ddbd2bfe8425cde42719a764d23a9f44460aff78","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.10.2.tgz"},"directories":{}},"0.10.3":{"name":"rc-form","version":"0.10.3","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.4.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"10a0e2cc8c82bd56559587c94989247964b70cba","_id":"rc-form@0.10.3","_shasum":"3cc8ccfe529763bac5d04d1a61441a6b9d9a6f08","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3cc8ccfe529763bac5d04d1a61441a6b9d9a6f08","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.10.3.tgz"},"directories":{}},"0.10.4":{"name":"rc-form","version":"0.10.4","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.4.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"254f5efd19440c9bdecf9379f145ab153c28a906","_id":"rc-form@0.10.4","_shasum":"72fea0ac5cead1a8ca4449bbe2ab3a6fb1893fc2","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"72fea0ac5cead1a8ca4449bbe2ab3a6fb1893fc2","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.10.4.tgz"},"directories":{}},"0.11.0":{"name":"rc-form","version":"0.11.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.5.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"0f971e027097142d5e50a7b30ef5b72b4faed7c1","_id":"rc-form@0.11.0","_shasum":"726fb8bd8de9eeb911904ca5d2fae3748ccbdfea","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"726fb8bd8de9eeb911904ca5d2fae3748ccbdfea","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.11.0.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rc-form-0.11.0.tgz_1454404093525_0.8499826400075108"},"directories":{}},"0.12.0":{"name":"rc-form","version":"0.12.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","dom-scroll-into-view":"^1.0.1","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.5.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"324a8b29193353e950e17cbf43a3a7cc0d130d23","_id":"rc-form@0.12.0","_shasum":"027c0b558a6104535434f27b5ad361b74f89b3e6","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"027c0b558a6104535434f27b5ad361b74f89b3e6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.12.0.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/rc-form-0.12.0.tgz_1454500263581_0.9522002306766808"},"directories":{}},"0.12.1":{"name":"rc-form","version":"0.12.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.11.2","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","dom-scroll-into-view":"^1.0.1","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"^1.5.0","hoist-non-react-statics":"^1.0.3"},"gitHead":"fe324c573450e103628d91fbabff67dd3bbeaa69","_id":"rc-form@0.12.1","_shasum":"c163f0c3995ed88e43fb0e3f2ec005de10e73fb6","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c163f0c3995ed88e43fb0e3f2ec005de10e73fb6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.12.1.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rc-form-0.12.1.tgz_1454506492910_0.8822408479172736"},"directories":{}},"0.13.0":{"name":"rc-form","version":"0.13.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","browser-test":"rc-tools run browser-test","browser-test-cover":"rc-tools run browser-test-cover"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"2bcf7b320c9f72f110bdc16fe4961d92369cf15a","_id":"rc-form@0.13.0","_shasum":"5211806c786a9dfc5435814afa4781dad2084647","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5211806c786a9dfc5435814afa4781dad2084647","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.13.0.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rc-form-0.13.0.tgz_1455451334435_0.6348473692778498"},"directories":{}},"0.13.2":{"name":"rc-form","version":"0.13.2","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"03c44eee31ee48e7c1857b85086d8152f32afb74","_id":"rc-form@0.13.2","_shasum":"c8904a82be0a7567d12f77b509c259497e799ba0","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c8904a82be0a7567d12f77b509c259497e799ba0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.13.2.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/rc-form-0.13.2.tgz_1455537044821_0.6148471683263779"},"directories":{}},"0.13.3":{"name":"rc-form","version":"0.13.3","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"7bf9434fe712f2f05d613e93f4a6d936de6ce6e6","_id":"rc-form@0.13.3","_shasum":"caaccd73e148c813b563dd9b7e3ac1a4486e2bfe","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"caaccd73e148c813b563dd9b7e3ac1a4486e2bfe","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.13.3.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/rc-form-0.13.3.tgz_1455537329230_0.3109392342157662"},"directories":{}},"0.13.4":{"name":"rc-form","version":"0.13.4","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"f9b9ae2e3e91c607f4130382ecaae10150c55ea4","_id":"rc-form@0.13.4","_shasum":"6d45867d92fadc3c1bef21e305e3a0e979f5a017","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"6d45867d92fadc3c1bef21e305e3a0e979f5a017","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.13.4.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/rc-form-0.13.4.tgz_1455538547706_0.964058066951111"},"directories":{}},"0.13.5":{"name":"rc-form","version":"0.13.5","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"a63c0e32c7d324a6679237b508ed3760dd19c368","_id":"rc-form@0.13.5","_shasum":"beffb8162e94a30d2988cff227e7b35a2cdfe375","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"beffb8162e94a30d2988cff227e7b35a2cdfe375","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.13.5.tgz"},"_npmOperationalInternal":{"host":"packages-5-east.internal.npmjs.com","tmp":"tmp/rc-form-0.13.5.tgz_1456225057335_0.36923181684687734"},"directories":{}},"0.13.6":{"name":"rc-form","version":"0.13.6","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"66f2f0e50d69ae1f9d274a39900ae57b520bf140","_id":"rc-form@0.13.6","_shasum":"c0384cadd807ac0060e8622504d12d0d0af003a6","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c0384cadd807ac0060e8622504d12d0d0af003a6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.13.6.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/rc-form-0.13.6.tgz_1456454951417_0.5931021994911134"},"directories":{}},"0.14.0":{"name":"rc-form","version":"0.14.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"29cc97a83e78f6b8587df717e5a34bf7ff4cf424","_id":"rc-form@0.14.0","_shasum":"c4b5f26dbe879031f3eeaa59dfa632483aefe4f3","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c4b5f26dbe879031f3eeaa59dfa632483aefe4f3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.14.0.tgz"},"_npmOperationalInternal":{"host":"packages-6-west.internal.npmjs.com","tmp":"tmp/rc-form-0.14.0.tgz_1456543207058_0.5626802791375667"},"directories":{}},"0.14.1":{"name":"rc-form","version":"0.14.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"6f8083ba6852a3e6da034216e19d69352e9b9be6","_id":"rc-form@0.14.1","_shasum":"fc08cc6e81e9eae01505a97642926ec05ec1a277","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"fc08cc6e81e9eae01505a97642926ec05ec1a277","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.14.1.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/rc-form-0.14.1.tgz_1456898905371_0.5186442725826055"},"directories":{}},"0.15.0-beta.0":{"name":"rc-form","version":"0.15.0-beta.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"ed75207cd37cf74123ddba3594033ad8b76397d5","_id":"rc-form@0.15.0-beta.0","_shasum":"9f123a72ab648a9aa7b5d853b0d3cc14c8923ff7","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9f123a72ab648a9aa7b5d853b0d3cc14c8923ff7","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.15.0-beta.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-0.15.0-beta.0.tgz_1459140396901_0.04203186393715441"},"directories":{}},"0.15.0":{"name":"rc-form","version":"0.15.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"64048cebc2bf296ac879b36519f7c619b6fe98d0","_id":"rc-form@0.15.0","_shasum":"cf7fbb315da82eb2e83037684274b5bd79771cb5","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"cf7fbb315da82eb2e83037684274b5bd79771cb5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.15.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-0.15.0.tgz_1459339670854_0.3496432830579579"},"directories":{}},"0.15.1":{"name":"rc-form","version":"0.15.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"86b732109e92f3cab74a7e0efb1fa20b593fda09","_id":"rc-form@0.15.1","_shasum":"957cc241bde67b1cd2b28a8275a7b063d049e608","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"957cc241bde67b1cd2b28a8275a7b063d049e608","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.15.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-0.15.1.tgz_1460130394332_0.5549914622679353"},"directories":{}},"0.15.2":{"name":"rc-form","version":"0.15.2","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"9dcee3c72d7661bdad7fea03a3ac42bb6f40dbd0","_id":"rc-form@0.15.2","_shasum":"8c55d18cbf0c82b0900099f323cac0624a12330b","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8c55d18cbf0c82b0900099f323cac0624a12330b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.15.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-form-0.15.2.tgz_1461582510338_0.4923754318151623"},"directories":{}},"0.15.3":{"name":"rc-form","version":"0.15.3","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"licenses":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"3dfdf7a0a0797d8c9f9656f49667620a9170258f","_id":"rc-form@0.15.3","_shasum":"50212e5bc77c7e7c875b62ff94451d77ea10f2fc","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"50212e5bc77c7e7c875b62ff94451d77ea10f2fc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.15.3.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-0.15.3.tgz_1462794583706_0.03123349486850202"},"directories":{}},"0.15.4":{"name":"rc-form","version":"0.15.4","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000,"commitizen":{"path":"./node_modules/cz-conventional-changelog"}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","cz-conventional-changelog":"^1.1.5","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"80b3e25f7aaebd0e1624528067a4827214deb3e2","_id":"rc-form@0.15.4","_shasum":"8e7d584ba69012ff760a9a554ffbca63fbdc7e4d","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8e7d584ba69012ff760a9a554ffbca63fbdc7e4d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.15.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-0.15.4.tgz_1462937186331_0.7080344820860773"},"directories":{}},"0.16.0":{"name":"rc-form","version":"0.16.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"413dc0a7cb11540ec4111af895f956be29dfedd7","_id":"rc-form@0.16.0","_shasum":"33e60fd54d93523b2d7a8594770a3c37ad073b31","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"33e60fd54d93523b2d7a8594770a3c37ad073b31","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.16.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-form-0.16.0.tgz_1463655737187_0.6621458048466593"},"directories":{}},"0.17.0":{"name":"rc-form","version":"0.17.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"^0.12.1","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"0.14.x","react-addons-test-utils":"0.14.x","react-data-binding":"^0.4.0","react-dom":"0.14.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"71ef72fe62bc6f61bc142fe95792fc0aa8d9bc9e","_id":"rc-form@0.17.0","_shasum":"d5df3fbb4495226fcda1fd404cfebb439fa70fd8","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d5df3fbb4495226fcda1fd404cfebb439fa70fd8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.17.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-0.17.0.tgz_1465718341212_0.9896865303162485"},"directories":{}},"0.17.1":{"name":"rc-form","version":"0.17.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"1.x","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"6f518131cbf4117a9149025c372e2b4fdd275603","_id":"rc-form@0.17.1","_shasum":"6b2bc31ec70c0dff104d237da82615c16362f5e5","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"6b2bc31ec70c0dff104d237da82615c16362f5e5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.17.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-0.17.1.tgz_1465727744111_0.49318628245964646"},"directories":{}},"0.17.2":{"name":"rc-form","version":"0.17.2","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"1.x","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"1b5536e8d02bb83af5178a6f2c7f32565e3c7ba6","_id":"rc-form@0.17.2","_shasum":"934610c82b246105ef33c99ea32fd19f80f84182","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"934610c82b246105ef33c99ea32fd19f80f84182","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-0.17.2.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-form-0.17.2.tgz_1470120908983_0.330400675535202"},"directories":{}},"1.0.0":{"name":"rc-form","version":"1.0.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"1.x","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","async-validator":"1.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x"},"gitHead":"eef728ca665efec90e03140b2e5f1cbdd2deed10","_id":"rc-form@1.0.0","_shasum":"1f9d73d7e822d30df9906027f8aab79898fe2acc","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"1f9d73d7e822d30df9906027f8aab79898fe2acc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-1.0.0.tgz_1472452188576_0.5918163885362446"},"directories":{}},"1.0.1":{"name":"rc-form","version":"1.0.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","dist","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"webpack --config=scripts/webpack.config.js && rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"1.x","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","warning":"^3.0.0"},"gitHead":"616ddd309d9ede65c652c3a158f7e1b08b9e8d1e","_id":"rc-form@1.0.1","_shasum":"f1186a627895701c7ebfe0b5f8e4206246e132bc","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f1186a627895701c7ebfe0b5f8e4206246e132bc","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-1.0.1.tgz_1476190808137_0.9166471234057099"},"directories":{}},"1.1.0":{"name":"rc-form","version":"1.1.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","dist","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"node ./node_modules/webpack/bin/webpack --config=scripts/webpack.config.js && rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"1.x","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","lodash.isequal":"^4.4.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash.get":"^4.4.2","lodash.has":"^4.5.2","lodash.set":"^4.3.2","warning":"^3.0.0"},"gitHead":"19ace67661f4d0ecb0ad0619fe76403091b2df73","_id":"rc-form@1.1.0","_shasum":"6815dc57bf2f02fda241fd4f9b9957c830261670","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"6815dc57bf2f02fda241fd4f9b9957c830261670","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.1.0.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-1.1.0.tgz_1482923793563_0.5239707711152732"},"directories":{}},"1.2.0":{"name":"rc-form","version":"1.2.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"entry":{"rc-form":["./scripts/index.js"]},"files":["lib","dist","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"1.x","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","lodash.isequal":"^4.4.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash.get":"^4.4.2","lodash.has":"^4.5.2","lodash.set":"^4.3.2","warning":"^3.0.0"},"gitHead":"844af8bd0813594bb45fb1c063c5b93a36a7344e","_id":"rc-form@1.2.0","_shasum":"52acc99a60daea530101915a31c39b581826f12a","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"52acc99a60daea530101915a31c39b581826f12a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.2.0.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-1.2.0.tgz_1483599584274_0.30377563391812146"},"directories":{}},"1.3.0":{"name":"rc-form","version":"1.3.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"entry":{"rc-form":["./scripts/index.js"]},"files":["lib","dist","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"rc-tools run test","chrome-test":"rc-tools run chrome-test","coverage":"rc-tools run coverage"},"devDependencies":{"antd":"1.x","async":"^1.5.2","expect.js":"0.3.x","history":"^1.16.0","lodash.isequal":"^4.4.0","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash.get":"^4.4.2","lodash.has":"^4.5.2","lodash.set":"^4.3.2","warning":"^3.0.0"},"gitHead":"055a2a811eeb2bcb4da46543e65ce75d6fafe6d4","_id":"rc-form@1.3.0","_shasum":"a4b0d993f005ac3d7ce106b86a99379dccad5be3","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"a4b0d993f005ac3d7ce106b86a99379dccad5be3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.3.0.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-form-1.3.0.tgz_1483721074881_0.6075225621461868"},"directories":{}},"1.3.1":{"name":"rc-form","version":"1.3.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"entry":{"rc-form":["./scripts/index.js"]},"files":["lib","dist","assets/*.css"],"license":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"rc-tools run saucelabs","test":"jest","chrome-test":"rc-tools run chrome-test","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"]},"devDependencies":{"antd":"1.x","async":"^1.5.2","coveralls":"^2.11.15","history":"^1.16.0","jest":"^19.0.2","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash.get":"^4.4.2","lodash.has":"^4.5.2","lodash.set":"^4.3.2","warning":"^3.0.0"},"gitHead":"e9e2359a34044799cf92ea522c3b4fdb6fc878e5","_id":"rc-form@1.3.1","_shasum":"23ce35e37d1bbe8370e6e88b604b167650f99afa","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"23ce35e37d1bbe8370e6e88b604b167650f99afa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.3.1.tgz"},"maintainers":[{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-1.3.1.tgz_1488958007277_0.8413687178399414"},"directories":{}},"1.3.2":{"name":"rc-form","version":"1.3.2","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","es","dist","assets/*.css"],"license":"MIT","main":"./lib/index","module":"./es/index","config":{"port":8000,"entry":{"rc-form":["./scripts/index.js"]}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"antd":"2.x","async":"^1.5.2","coveralls":"^2.11.15","history":"^1.16.0","jest":"^19.0.2","pre-commit":"1.x","prop-types":"^15.5.10","rc-tools":"^6.2.0","react":"15.x","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","create-react-class":"^15.5.3","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash.get":"^4.4.2","lodash.has":"^4.5.2","lodash.set":"^4.3.2","warning":"^3.0.0"},"gitHead":"4c0232e260a02ead39e80c06862fe08638089ce8","_id":"rc-form@1.3.2","_shasum":"1ed3e3e8c97ac466a82f279ad4c725dbd1029d37","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"1ed3e3e8c97ac466a82f279ad4c725dbd1029d37","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.3.2.tgz"},"maintainers":[{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-form-1.3.2.tgz_1495095171284_0.7083233243320137"},"directories":{}},"1.3.4":{"name":"rc-form","version":"1.3.4","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","es","dist","assets/*.css"],"license":"MIT","main":"./lib/index","module":"./es/index","config":{"port":8000,"entry":{"rc-form":["./scripts/index.js"]}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"antd":"2.x","async":"^1.5.2","coveralls":"^2.11.15","enzyme":"^2.8.2","history":"^1.16.0","jest":"^19.0.2","pre-commit":"1.x","prop-types":"^15.5.10","rc-tools":"^6.2.0","react":"15.x","react-addons-test-utils":"^15.5.1","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","create-react-class":"^15.5.3","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash.get":"^4.4.2","lodash.has":"^4.5.2","lodash.set":"^4.3.2","warning":"^3.0.0"},"gitHead":"1e1683d1e1031dae7a42c6522bbc5913cd6ca5cb","_id":"rc-form@1.3.4","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-RFaUUW6Be3LNZsy74P54S8K2t+FagO/UA3/qkyXEo3LYGXB/0tL53QydXnBBTscyj/fnDy3d0fVK5HmCJ9Cfzg==","shasum":"3e0ba7671682561f5421fe4eb23ad3626b0aa130","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.3.4.tgz"},"maintainers":[{"email":"benjytrys@gmail.com","name":"benjycui"},{"email":"yiminghe@gmail.com","name":"yiminghe"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-form-1.3.4.tgz_1496997934313_0.037961853202432394"},"directories":{}},"1.4.0":{"name":"rc-form","version":"1.4.0","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","es","dist","assets/*.css"],"license":"MIT","main":"./lib/index","module":"./es/index","config":{"port":8000,"entry":{"rc-form":["./scripts/index.js"]}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"antd":"2.x","async":"^1.5.2","coveralls":"^2.11.15","enzyme":"^2.8.2","history":"^1.16.0","jest":"^19.0.2","pre-commit":"1.x","prop-types":"^15.5.10","rc-tools":"^6.2.0","react":"15.x","react-addons-test-utils":"^15.5.1","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","create-react-class":"^15.5.3","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash.get":"^4.4.2","lodash.has":"^4.5.2","lodash.set":"^4.3.2","warning":"^3.0.0"},"gitHead":"5eba160f55d4c7b66e8f3750c2c58f4b33cb7bfc","_id":"rc-form@1.4.0","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-fjX+tIOoyh19jHyddNnWKj3yHfceicGul6tFEWtpmnZpFJkg6z+WxASMySx/rgnYHV5Om1ey6nlLTCP84KQIYA==","shasum":"9d26115f0e70799018bbc25b5ac48df3863937e8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.4.0.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-form-1.4.0.tgz_1497345516322_0.6803164901211858"},"directories":{}},"1.4.1":{"name":"rc-form","version":"1.4.1","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","es","dist","assets/*.css"],"license":"MIT","main":"./lib/index","module":"./es/index","config":{"port":8000,"entry":{"rc-form":["./scripts/index.js"]}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"antd":"2.x","async":"^1.5.2","coveralls":"^2.11.15","enzyme":"^2.8.2","history":"^1.16.0","jest":"^19.0.2","pre-commit":"1.x","prop-types":"^15.5.10","rc-tools":"^6.2.0","react":"15.x","react-addons-test-utils":"^15.5.1","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","create-react-class":"^15.5.3","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash":"^4.17.4","warning":"^3.0.0"},"gitHead":"c6f4c1cedf887989c760a2596d11cbfc14be70c3","_id":"rc-form@1.4.1","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-+msYiPsZIl3v+E6pNhts3pvAi+FI28n/2s4KKMMOPxzR6zNlLreymn6MBYmVhkuvkrTOyHuiHhkbDclaSD41Lw==","shasum":"5a5d6920ade0f5e21d2a6641639c06c0d38ebc9a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.4.1.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-form-1.4.1.tgz_1497410207989_0.49900901736691594"},"directories":{}},"1.4.2":{"name":"rc-form","version":"1.4.2","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","es","dist","assets/*.css"],"license":"MIT","main":"./lib/index","module":"./es/index","config":{"port":8000,"entry":{"rc-form":["./scripts/index.js"]}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"antd":"2.x","async":"^1.5.2","coveralls":"^2.11.15","enzyme":"^2.8.2","history":"^1.16.0","jest":"^19.0.2","pre-commit":"1.x","prop-types":"^15.5.10","rc-tools":"^6.2.0","react":"15.x","react-addons-test-utils":"^15.5.1","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","create-react-class":"^15.5.3","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash":"^4.17.4","warning":"^3.0.0"},"gitHead":"900341d2f2708492230b56bb1d57ebb512414894","_id":"rc-form@1.4.2","_npmVersion":"5.0.0","_nodeVersion":"8.0.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-p3Ibpq7Stg0Rww/LCE3rrzKzJNoLux7l+7BzqTX5M0OQcq4ycrxyDD5kMi7sduHsVnlB+TbAH+pdYZG59GqbNw==","shasum":"b3001977630cf14a5dc10b96cae92f0311f7c494","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.4.2.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-form-1.4.2.tgz_1497495974993_0.09978183102793992"},"directories":{}},"1.4.3":{"name":"rc-form","version":"1.4.3","description":"React High Order Form Component","keywords":["react","react-component","react-form","form"],"homepage":"https://github.com/react-component/form","author":{"name":"yiminghe@gmail.com"},"repository":{"type":"git","url":"git+https://github.com/react-component/form.git"},"bugs":{"url":"https://github.com/react-component/form/issues"},"files":["lib","es","dist","assets/*.css"],"license":"MIT","main":"./lib/index","module":"./es/index","config":{"port":8000,"entry":{"rc-form":["./scripts/index.js"]}},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"rc-tools run server","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"jest":{"collectCoverageFrom":["src/*"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"devDependencies":{"antd":"2.x","async":"^1.5.2","coveralls":"^2.11.15","enzyme":"^2.8.2","history":"^1.16.0","jest":"^19.0.2","pre-commit":"1.x","prop-types":"^15.5.10","rc-tools":"^6.2.0","react":"15.x","react-addons-test-utils":"^15.5.1","react-data-binding":"^0.4.0","react-dom":"15.x","react-redux":"^4.0.0","react-router":"^1.0.2","redux":"^3.0.4"},"pre-commit":["lint"],"dependencies":{"async-validator":"1.x","babel-runtime":"6.x","create-react-class":"^15.5.3","dom-scroll-into-view":"1.x","hoist-non-react-statics":"1.x","lodash":"^4.17.4","warning":"^3.0.0"},"gitHead":"4835142cb4426726de086b02b5078c87af90929b","_id":"rc-form@1.4.3","_npmVersion":"5.0.3","_nodeVersion":"8.1.1","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"integrity":"sha512-2LNYsEL8xkZNVNrl9XKIlutoR5RUtm3cavOaGhkWoW/n/MWgvLv7L2dDgLNj2C4bzA4e4ofOarqfa+SnaenM1A==","shasum":"4e96ef7a6913bf624f306d08ea2631d8ffc58c81","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-form/-/rc-form-1.4.3.tgz"},"maintainers":[{"name":"benjycui","email":"benjytrys@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-form-1.4.3.tgz_1497924973201_0.40867405175231397"},"directories":{}}},"name":"rc-form","time":{"modified":"2017-06-22T06:20:38.294Z","created":"2015-12-08T11:25:05.289Z","0.0.0":"2015-12-08T11:25:05.289Z","0.1.0":"2015-12-09T10:33:55.673Z","0.2.0":"2015-12-10T13:02:24.056Z","0.3.0":"2015-12-11T08:29:19.065Z","0.3.1":"2015-12-14T06:36:09.063Z","0.4.0":"2015-12-14T12:32:29.244Z","0.4.1":"2015-12-15T04:44:07.902Z","0.4.2":"2015-12-15T06:42:24.966Z","0.5.0":"2015-12-15T07:30:32.727Z","0.5.1":"2015-12-15T07:52:21.583Z","0.6.0":"2015-12-28T13:57:32.809Z","0.7.0":"2015-12-29T08:35:37.348Z","0.7.1":"2016-01-05T12:21:49.726Z","0.7.2":"2016-01-06T03:10:34.811Z","0.7.3":"2016-01-06T03:33:31.700Z","0.8.0":"2016-01-13T08:46:52.011Z","0.9.0":"2016-01-18T03:38:06.223Z","0.9.1":"2016-01-21T07:21:28.863Z","0.10.0":"2016-01-27T04:20:18.363Z","0.10.1":"2016-01-28T08:13:43.543Z","0.10.2":"2016-01-28T13:16:43.589Z","0.10.3":"2016-01-28T13:29:46.803Z","0.10.4":"2016-02-01T13:04:59.925Z","0.11.0":"2016-02-02T09:08:14.779Z","0.12.0":"2016-02-03T11:51:06.453Z","0.12.1":"2016-02-03T13:34:54.375Z","0.13.0":"2016-02-14T12:02:16.655Z","0.13.2":"2016-02-15T11:50:48.491Z","0.13.3":"2016-02-15T11:55:33.447Z","0.13.4":"2016-02-15T12:15:51.588Z","0.13.5":"2016-02-23T10:57:41.976Z","0.13.6":"2016-02-26T02:49:14.664Z","0.14.0":"2016-02-27T03:20:10.134Z","0.14.1":"2016-03-02T06:08:25.844Z","0.15.0-beta.0":"2016-03-28T04:46:37.299Z","0.15.0":"2016-03-30T12:07:51.300Z","0.15.1":"2016-04-08T15:46:34.855Z","0.15.2":"2016-04-25T11:08:33.852Z","0.15.3":"2016-05-09T11:49:46.617Z","0.15.4":"2016-05-11T03:26:26.810Z","0.16.0":"2016-05-19T11:02:21.943Z","0.17.0":"2016-06-12T07:59:03.890Z","0.17.1":"2016-06-12T10:35:46.488Z","0.17.2":"2016-08-02T06:55:10.007Z","1.0.0":"2016-08-29T06:29:50.750Z","1.0.1":"2016-10-11T13:00:10.205Z","1.1.0":"2016-12-28T11:16:33.838Z","1.2.0":"2017-01-05T06:59:44.530Z","1.3.0":"2017-01-06T16:44:37.354Z","1.3.1":"2017-03-08T07:26:47.532Z","1.3.2":"2017-05-18T08:12:51.524Z","1.3.3":"2017-06-07T03:24:44.277Z","1.3.4":"2017-06-09T08:45:34.491Z","1.4.0":"2017-06-13T09:18:36.525Z","1.4.1":"2017-06-14T03:16:48.223Z","1.4.2":"2017-06-15T03:06:15.236Z","1.4.3":"2017-06-20T02:16:13.368Z"},"readmeFilename":"README.md","homepage":"https://github.com/react-component/form"}