{"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"keywords":["react","react-component","react-upload","upload"],"dist-tags":{"latest":"2.4.0","next":"1.6.6-beta.1","beta":"1.6.7-beta"},"description":"upload ui component for react","readme":"# rc-upload\n---\n\nReact Upload\n\n[![NPM version][npm-image]][npm-url]\n[![build status][travis-image]][travis-url]\n[![Test coverage][coveralls-image]][coveralls-url]\n[![npm download][download-image]][download-url]\n\n[npm-image]: http://img.shields.io/npm/v/rc-upload.svg?style=flat-square\n[npm-url]: http://npmjs.org/package/rc-upload\n[download-image]: https://img.shields.io/npm/dm/rc-upload.svg?style=flat-square\n[download-url]: https://npmjs.org/package/rc-upload\n[travis-image]: https://img.shields.io/travis/react-component/upload.svg?style=flat-square\n[travis-url]: https://travis-ci.org/react-component/upload\n[coveralls-image]: https://img.shields.io/coveralls/react-component/upload.svg?style=flat-square\n[coveralls-url]: https://coveralls.io/r/react-component/upload?branch=master\n\n## Development\n\n```\nnpm install\nnpm start\n```\n\n## Example\n\nhttp://localhost:8000/examples/\n\nonline example: http://react-component.github.io/upload/examples/simple.html\n\n\n## Feature\n\n* support ie8,ie8+,chrome,firefox,safari\n\n## install\n\n[![rc-upload](https://nodei.co/npm/rc-upload.png)](https://npmjs.org/package/rc-upload)\n\n## Usage\n\n```js\nvar Upload = require('rc-upload');\nvar React = require('react');\nReact.render(<Upload />, container);\n```\n\n## API\n\n### props\n\n|name|type|default| description|\n|-----|---|--------|----|\n|name | string | file| file param post to server |\n|style | object | {}| root component inline style |\n|className | string | - | root component className |\n|disabled | boolean | false | whether disabled |\n|component | \"div\"|\"span\" | \"span\"| wrap component name |\n|supportServerRender | boolean | false| whether to support server render |\n|onReady | function | | only call when supportServerRender is true, upload is rendered completely |\n|action| string | | form action url |\n|data| object/function(file) | | other data object to post or a function which returns a data object |\n|headers| object | {} | http headers to post, available in modern browsers |\n|accept | string | | input accept attribute |\n|multiple | boolean | false | only support ie10+|\n|onStart | function| | start upload file |\n|onError| function| | error callback |\n|onSuccess | function | | success callback |\n|onProgress | function || progress callback, only for modern browsers|\n|beforeUpload| function |null| before upload check, return false or a rejected Promise will stop upload, only for modern browsers|\n|customRequest | function | null | provide an override for the default xhr behavior for additional customization|\n|withCredentials | boolean | false | ajax upload with cookie send |\n\n#### onError arguments\n\n1. `err`: request error message\n2. `response`: request response, not support on iframeUpload\n3. `file`: upload file\n\n### onSuccess arguments\n\n1. `result`: response body\n2. `file`: upload file\n3. `xhr`: xhr header, only for modern browsers which support AJAX upload. since\n   2.4.0\n\n\n### customRequest\n\nAllows for advanced customization by overriding default behavior in AjaxUplaoder. Provide your own XMLHttpRequest calls to interface with custom backend processes or interact with AWS S3 service through the aws-sdk-js package.\n\ncustomRequest callback is passed an object with:\n\n* `onProgress: (event: { percent: number }): void`\n* `onError: (event: Error, body?: Object): void`\n* `onSuccess: (body: Object): void`\n* `data: Object`\n* `filename: String`\n* `file: File`\n* `withCredentials: Boolean`\n* `action: String`\n* `headers: Object`\n\n\n### methods\n\nabort(file?: File) => void: abort the uploading file\n\n\n### IE8/9 Note\n\n#### Download Popup Problem\n\nIn iframe uploader way, the content-type of response should be `text/plain` or `text/html`.[referense](https://github.com/blueimp/jQuery-File-Upload/wiki/Setup#content-type-negotiation)\n\nWhat's more, in iframe mode, the response's status should always be `200 OK`, otherwise you might get an `Access is denied` error in IE 8/9.\n\n#### Domain Problem\n\nIf the Page set document.domain, then server should output document.domain according to _documentDomain parameter.\n\n```js\nvar ret = '';\nif (postData._documentDomain) {\n  ret += '<script>document.domain=\"'+postData._documentDomain+'\";</script>';\n}\nthis.body = ret + '{\"url\":\"xx.jpq\"}';\n```\n\n## License\n\nrc-upload is released under the MIT license.\n","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"users":{"wwwsoftwares":true,"staydan":true},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","versions":{"1.0.0":{"name":"rc-upload","version":"1.0.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8000},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node-dev --harmony ./tests/starter.js","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"2.x","rc-tools":"2.x","react":"0.13.x","node-dev":"2.x"},"precommit":["lint","less"],"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"814d00a7eb6cfe7fd8b69afd9e9cdf53bc3752e0","_id":"rc-upload@1.0.0","_shasum":"6e9e087e138ee66f1c71998c85d81f27ae521706","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"6e9e087e138ee66f1c71998c85d81f27ae521706","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.0.0.tgz"},"directories":{}},"1.1.0":{"name":"rc-upload","version":"1.1.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git@github.com:react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8000},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node-dev --harmony ./tests/starter.js","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","node-dev":"2.x","precommit-hook":"1.x","rc-server":"2.x","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"26a431d6657aa9a38e379a237dfe5fb41fb28e98","_id":"rc-upload@1.1.0","_shasum":"2a53a628c2333717deffa076a1155cb2b04d5629","_from":".","_npmVersion":"2.5.1","_nodeVersion":"0.12.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"2a53a628c2333717deffa076a1155cb2b04d5629","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.1.0.tgz"},"directories":{}},"1.1.1":{"name":"rc-upload","version":"1.1.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","spm":{"dependencies":{"react":"*"}},"config":{"port":8000},"scripts":{"build":"rc-tools run build","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","history":"rc-tools run history","start":"node-dev --harmony ./tests/starter.js","publish":"spm publish && rc-tools run tag","lint":"rc-tools run lint","test":"","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","node-dev":"2.x","precommit-hook":"1.x","rc-server":"2.x","rc-tools":"2.x","react":"0.13.x"},"precommit":["lint","less"],"browserify":{"transform":[["reactify",{"es6":true}],"envify"]},"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"f2339d1c4e518f0386c5a1ac5966a736f9035e77","_id":"rc-upload@1.1.1","_shasum":"9e75ef3782088769ac4bda6c24be9edc0faf6297","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"9e75ef3782088769ac4bda6c24be9edc0faf6297","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.1.1.tgz"},"directories":{}},"1.1.2":{"name":"rc-upload","version":"1.1.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"2.x","rc-tools":"2.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"667f375ffa5bf5e2acf7d2b1cd816dc634413740","_id":"rc-upload@1.1.2","_shasum":"eeb7c2406b2d1987e8563ac708231524a882a448","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"eeb7c2406b2d1987e8563ac708231524a882a448","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.1.2.tgz"},"directories":{}},"1.2.0":{"name":"rc-upload","version":"1.2.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"c7dffca5695860886ef1f1a4dbf94707eb1332fd","_id":"rc-upload@1.2.0","_shasum":"f3c027e00e2040e5a9e074b187e5db8521b0af33","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"f3c027e00e2040e5a9e074b187e5db8521b0af33","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.2.0.tgz"},"directories":{}},"1.2.1":{"name":"rc-upload","version":"1.2.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"5b7124ed929316b505b15efffb9eb123a6435a7a","_id":"rc-upload@1.2.1","_shasum":"80db4407906e7a89cf0a625232b009cef1b16fe0","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"80db4407906e7a89cf0a625232b009cef1b16fe0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.2.1.tgz"},"directories":{}},"1.2.2":{"name":"rc-upload","version":"1.2.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"a29f43329af50fa2ee88205827a13f35627643e7","_id":"rc-upload@1.2.2","_shasum":"048b7cab23f47b14b5cbe0de5a122df5cbbdda2f","_from":".","_npmVersion":"2.11.1","_nodeVersion":"2.3.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"048b7cab23f47b14b5cbe0de5a122df5cbbdda2f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.2.2.tgz"},"directories":{}},"1.2.3":{"name":"rc-upload","version":"1.2.3","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"d5d3bf91ed9859686eee8d09d886e991ffb8af56","_id":"rc-upload@1.2.3","_shasum":"71fd65578540bed13355503f5e4ce803d1362cc8","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"71fd65578540bed13355503f5e4ce803d1362cc8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.2.3.tgz"},"directories":{}},"1.2.4-beta1":{"name":"rc-upload","version":"1.2.4-beta1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"object-assign":"~2.0.0","superagent":"~1.2.0"},"gitHead":"7af694df1c7718c15d6379d93c0944f55282f4af","_id":"rc-upload@1.2.4-beta1","_shasum":"36a2298d9eb8db8239046127fddc32cb3320bf3c","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"36a2298d9eb8db8239046127fddc32cb3320bf3c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.2.4-beta1.tgz"},"directories":{}},"1.2.4-beta2":{"name":"rc-upload","version":"1.2.4-beta2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0"},"gitHead":"f0fcc2879802cd27dd69c484bc7810ab68ae91cd","_id":"rc-upload@1.2.4-beta2","_shasum":"87ab0f5cdb22fe259bd290b46ecc1d6402aa6e0c","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"87ab0f5cdb22fe259bd290b46ecc1d6402aa6e0c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.2.4-beta2.tgz"},"directories":{}},"1.3.0":{"name":"rc-upload","version":"1.3.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0"},"gitHead":"4800fcde9eb3b26c1beaca59dbcce84e8a00b1a0","_id":"rc-upload@1.3.0","_shasum":"2a615a795dcbe243ae38ea25b158af29a84edc58","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"2a615a795dcbe243ae38ea25b158af29a84edc58","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.3.0.tgz"},"directories":{}},"1.3.1":{"name":"rc-upload","version":"1.3.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0"},"gitHead":"b1aad9b870724a8ffce95e2f8fdb25afa6a1c7ff","_id":"rc-upload@1.3.1","_shasum":"bcacbfc7ec4542855ec1c14ee3561f6060ea9d85","_from":".","_npmVersion":"2.13.0","_nodeVersion":"2.4.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"}],"dist":{"shasum":"bcacbfc7ec4542855ec1c14ee3561f6060ea9d85","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.3.1.tgz"},"directories":{}},"1.3.2":{"name":"rc-upload","version":"1.3.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0"},"gitHead":"e2aaa87068f50bfdc387afdb980411727e40519c","_id":"rc-upload@1.3.2","_shasum":"3738604ce24f478efaafa9755f3cca198ad0f849","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"}],"dist":{"shasum":"3738604ce24f478efaafa9755f3cca198ad0f849","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.3.2.tgz"},"directories":{}},"1.3.3":{"name":"rc-upload","version":"1.3.3","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0"},"gitHead":"cc0a56a811a1b1602e0f330afc4c7519ef1a1ba1","_id":"rc-upload@1.3.3","_shasum":"3b94a331dbfdc45888e485e61c1acc8b6b30a12b","_from":".","_npmVersion":"3.2.2","_nodeVersion":"0.12.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3b94a331dbfdc45888e485e61c1acc8b6b30a12b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.3.3.tgz"},"directories":{}},"1.3.4":{"name":"rc-upload","version":"1.3.4","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0"},"gitHead":"72fba098ab6909a5cb13124d177682fc83af9ef5","_id":"rc-upload@1.3.4","_shasum":"3931f7925dba10b692f6c67c256d8938c9519824","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"3931f7925dba10b692f6c67c256d8938c9519824","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.3.4.tgz"},"directories":{}},"1.3.5":{"name":"rc-upload","version":"1.3.5","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0","uuid":"~2.0.1"},"gitHead":"a28e5bb8bf4cfb9ba760a00e0b8419da3bff13db","_id":"rc-upload@1.3.5","_shasum":"43a20cd0381c6048af60d8857ee9012579bc02aa","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"43a20cd0381c6048af60d8857ee9012579bc02aa","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.3.5.tgz"},"directories":{}},"1.3.6":{"name":"rc-upload","version":"1.3.6","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0","uuid":"~2.0.1"},"gitHead":"38554f34282f2e650eea5b2dc0d0dde08bf2ccb9","_id":"rc-upload@1.3.6","_shasum":"9564ec0cf7a3c2a7ac7621a34373e703e6b77362","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"9564ec0cf7a3c2a7ac7621a34373e703e6b77362","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.3.6.tgz"},"directories":{}},"1.3.7":{"name":"rc-upload","version":"1.3.7","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0","uuid":"~2.0.1"},"gitHead":"297e72912e01197b0bf5b1d2a61e5215e0dfd6a7","_id":"rc-upload@1.3.7","_shasum":"79fde670ebeeaf2a6bb85fecac33cb36cbe4993b","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"79fde670ebeeaf2a6bb85fecac33cb36cbe4993b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.3.7.tgz"},"directories":{}},"1.4.0":{"name":"rc-upload","version":"1.4.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0","uuid":"~2.0.1"},"gitHead":"1540f5425a6abe044976c74d5c5f91a1c77db128","_id":"rc-upload@1.4.0","_shasum":"39ff87e1ec56978798b1f0247385e6434e641f68","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"39ff87e1ec56978798b1f0247385e6434e641f68","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.4.0.tgz"},"directories":{}},"1.4.1":{"name":"rc-upload","version":"1.4.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","precommit":"rc-tools run precommit","less":"rc-tools run less","gh-pages":"rc-tools run gh-pages","start":"node --harmony ./tests/starter.js","publish":"rc-tools run tag","lint":"rc-tools run lint","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"3.x","react":"0.13.x"},"precommit":["precommit"],"dependencies":{"superagent":"~1.2.0","uuid":"~2.0.1"},"gitHead":"3cca35d39f0dfae0dfc5906737442a47fc510562","_id":"rc-upload@1.4.1","_shasum":"8e98f9f9be5eedd61470845db92868b43e4b22f9","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"8e98f9f9be5eedd61470845db92868b43e4b22f9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.4.1.tgz"},"directories":{}},"1.4.2":{"name":"rc-upload","version":"1.4.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"fc301b4c112876b18a1e5d45d4f9a11046a89c33","_id":"rc-upload@1.4.2","_shasum":"c72c98974cda9a1b6ce7fb118bf9d05c2f4dd4d8","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c72c98974cda9a1b6ce7fb118bf9d05c2f4dd4d8","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.4.2.tgz"},"directories":{}},"1.4.3":{"name":"rc-upload","version":"1.4.3","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"17e6fee49bf4d651d0a04d9a76f5531b61774e45","_id":"rc-upload@1.4.3","_shasum":"2f1495255fd51f86c67503d02a21d997ee38b7ca","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"2f1495255fd51f86c67503d02a21d997ee38b7ca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.4.3.tgz"},"directories":{}},"1.4.4":{"name":"rc-upload","version":"1.4.4","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"05d2e5d50282d0c234e3a629d49d0a980a5c9bf9","_id":"rc-upload@1.4.4","_shasum":"d0aa068001a7e0094d0c8428b2372d8fce034b7e","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d0aa068001a7e0094d0c8428b2372d8fce034b7e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.4.4.tgz"},"directories":{}},"1.5.1":{"name":"rc-upload","version":"1.5.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"c3207ead3c67ae36732b4e142dfbb3381400f6a5","_id":"rc-upload@1.5.1","_shasum":"d494e181ef636a5b1b1bcfcc1d83430aadff049d","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d494e181ef636a5b1b1bcfcc1d83430aadff049d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.5.1.tgz"},"directories":{}},"1.5.2":{"name":"rc-upload","version":"1.5.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"d816ab8e32bbe3736dbd55d40f81f4d216ce3773","_id":"rc-upload@1.5.2","_shasum":"dc6d2bbe3b85ae5722b50e8830faa78f04caf18f","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"dc6d2bbe3b85ae5722b50e8830faa78f04caf18f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.5.2.tgz"},"directories":{}},"1.5.3":{"name":"rc-upload","version":"1.5.3","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"9f40899de1dc3b59492f1f182786ea29960c8106","_id":"rc-upload@1.5.3","_shasum":"34c284ce9c04fa93c58c238c33b5dfa2887b7f1e","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"34c284ce9c04fa93c58c238c33b5dfa2887b7f1e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.5.3.tgz"},"directories":{}},"1.5.6":{"name":"rc-upload","version":"1.5.6","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"c61335dc04d91cf98b54333bc4cabcf0f9009033","_id":"rc-upload@1.5.6","_shasum":"83bcdab030d8ae0c27a5f2fe82d9121e8343f0a3","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"83bcdab030d8ae0c27a5f2fe82d9121e8343f0a3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.5.6.tgz"},"directories":{}},"1.6.0":{"name":"rc-upload","version":"1.6.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"superagent":"1.x"},"gitHead":"855821daa3c685e644fb1b110557f295ce4780f9","_id":"rc-upload@1.6.0","_shasum":"de76327e488a7934b05022cce95ea945802e1f75","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"de76327e488a7934b05022cce95ea945802e1f75","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.6.0.tgz"},"directories":{}},"1.5.7":{"name":"rc-upload","version":"1.5.7","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"279e882ddff5007ed334f7daaf75f4f33904554d","_id":"rc-upload@1.5.7","_shasum":"309da188bd7623a904319ab114f95c5033ac902e","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"309da188bd7623a904319ab114f95c5033ac902e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.5.7.tgz"},"directories":{}},"1.5.8":{"name":"rc-upload","version":"1.5.8","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"01075d3b6405a22e0b1b61227f0014a9f96d4f80","_id":"rc-upload@1.5.8","_shasum":"f5c4187db340f0c75d8bc959eed87c5d6bfc1f32","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f5c4187db340f0c75d8bc959eed87c5d6bfc1f32","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.5.8.tgz"},"directories":{}},"1.5.9":{"name":"rc-upload","version":"1.5.9","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","author":{"name":"eward.song@gmail.com"},"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"rc-align":"1.x","superagent":"1.x"},"gitHead":"232e856a956045decaed5c73de2f599905cb8adf","_id":"rc-upload@1.5.9","_shasum":"b7b1bb2131e7671146e5f8a9e6595056da20da92","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"b7b1bb2131e7671146e5f8a9e6595056da20da92","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.5.9.tgz"},"directories":{}},"1.6.4":{"name":"rc-upload","version":"1.6.4","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"superagent":"1.x"},"gitHead":"3cc58bd5b5d59670910a29b56253366a071859c7","_id":"rc-upload@1.6.4","_shasum":"b9e17ee6a425092087769c1310c44c64eae3fae9","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"b9e17ee6a425092087769c1310c44c64eae3fae9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.6.4.tgz"},"directories":{}},"1.6.5":{"name":"rc-upload","version":"1.6.5","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"superagent":"1.x","warning":"~2.0.0"},"gitHead":"89e2b466a1c6593b909930edfae6c7b1b92d8ad0","_id":"rc-upload@1.6.5","_shasum":"89a43d85edb777f23010975ab92d59a07ad15dd0","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"89a43d85edb777f23010975ab92d59a07ad15dd0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.6.5.tgz"},"directories":{}},"1.6.6-beta.1":{"name":"rc-upload","version":"1.6.6-beta.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"superagent":"1.x","warning":"~2.0.0"},"gitHead":"ac99bca8b2919edcf42b8b1f34e6a928c3a56909","_id":"rc-upload@1.6.6-beta.1","_shasum":"43dc142a8f254c180c266890fe7fa4056011f308","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"dist":{"shasum":"43dc142a8f254c180c266890fe7fa4056011f308","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.6.6-beta.1.tgz"},"directories":{}},"1.6.6":{"name":"rc-upload","version":"1.6.6","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"superagent":"1.x","warning":"~2.0.0"},"gitHead":"e327a6a4f19d9f57b60263a4d3edaa5c6dd3ed92","_id":"rc-upload@1.6.6","_shasum":"5828d02c73897b9b1f1f7d0229a10ce5f048888c","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"dist":{"shasum":"5828d02c73897b9b1f1f7d0229a10ce5f048888c","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.6.6.tgz"},"directories":{}},"1.6.7-beta":{"name":"rc-upload","version":"1.6.7-beta","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover"},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook":"1.x","rc-server":"3.x","rc-tools":"4.x","react":"0.13.x"},"precommit":["lint"],"dependencies":{"warning":"~2.0.0"},"gitHead":"bf67ac0b4a3a076990c7400caa9519b958f38cf5","_id":"rc-upload@1.6.7-beta","_shasum":"1ac72c8f65532b294d43b9f2450ec61a35dcb63f","_from":".","_npmVersion":"2.14.4","_nodeVersion":"4.1.2","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"dist":{"shasum":"1ac72c8f65532b294d43b9f2450ec61a35dcb63f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.6.7-beta.tgz"},"directories":{}},"1.7.0":{"name":"rc-upload","version":"1.7.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover","validate":""},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook-eslint":"3.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"5d3791155422f48ce9efca85c12f78e4d1ef4a37","_id":"rc-upload@1.7.0","_shasum":"01e48928ee21be637e39d04451471b2f4acd7cca","_from":".","_npmVersion":"2.14.8","_nodeVersion":"4.0.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"01e48928ee21be637e39d04451471b2f4acd7cca","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.7.0.tgz"},"directories":{}},"1.7.1":{"name":"rc-upload","version":"1.7.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover","validate":""},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook-eslint":"3.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"4e1383b1888d775e2f68ceb7897d1e53c122cd9f","_id":"rc-upload@1.7.1","_shasum":"3993c63168e8f70072d40a40656b4a78ae2de5ce","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"dist":{"shasum":"3993c63168e8f70072d40a40656b4a78ae2de5ce","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.7.1.tgz"},"directories":{}},"1.7.2":{"name":"rc-upload","version":"1.7.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover","validate":""},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook-eslint":"3.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"fbb63e568debbfbc25a3c4f31b9abbb65703e75a","_id":"rc-upload@1.7.2","_shasum":"78c2ae7f61b945aa5fc315dcd4d1b2d9aa2c4a5a","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.1","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"dist":{"shasum":"78c2ae7f61b945aa5fc315dcd4d1b2d9aa2c4a5a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.7.2.tgz"},"directories":{}},"1.8.0":{"name":"rc-upload","version":"1.8.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover","validate":""},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook-eslint":"3.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"e5bc131f6fd9e45edf7727befe04ed4903fd8bab","_id":"rc-upload@1.8.0","_shasum":"bf35fa1a3e843115ef00522389923312d3446d6f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"bf35fa1a3e843115ef00522389923312d3446d6f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.8.0.tgz"},"directories":{}},"1.8.1":{"name":"rc-upload","version":"1.8.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover","validate":""},"devDependencies":{"co-busboy":"^1.3.0","expect.js":"0.3.x","precommit-hook-eslint":"3.x","rc-server":"3.x","rc-tools":"4.x","react":"0.14.x","react-addons-test-utils":"~0.14.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"7c1b56a56e242640ea6c54d2e18c8f97312c4c24","_id":"rc-upload@1.8.1","_shasum":"5aad138b62d05e82e3365599f124bf2afc77a82f","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.1.1","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"5aad138b62d05e82e3365599f124bf2afc77a82f","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.8.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-1.8.1.tgz_1458107045560_0.47109914431348443"},"directories":{}},"1.9.0":{"name":"rc-upload","version":"1.9.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node --harmony tests/starter","pub":"rc-tools run pub","lint":"rc-tools run lint","karma":"rc-tools run karma","saucelabs":"node --harmony node_modules/.bin/rc-tools run saucelabs","browser-test":"node --harmony node_modules/.bin/rc-tools run browser-test","browser-test-cover":"node --harmony node_modules/.bin/rc-tools run browser-test-cover","validate":""},"devDependencies":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"cbc758f066217a11e0b2a64a82a1f2a904fb1ec8","_id":"rc-upload@1.9.0","_shasum":"50ba9a6a2d97cc9bf076db06cae7044e84fbe91e","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"50ba9a6a2d97cc9bf076db06cae7044e84fbe91e","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.9.0.tgz"},"_npmOperationalInternal":{"host":"packages-13-west.internal.npmjs.com","tmp":"tmp/rc-upload-1.9.0.tgz_1458723900203_0.8200282831676304"},"directories":{}},"1.10.0":{"name":"rc-upload","version":"1.10.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"licenses":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"dac6e0d4485c0fc7c4de738e7b9729c6cd252b5d","_id":"rc-upload@1.10.0","_shasum":"e957736e9109093b9decf98f59e57097a04deef5","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"e957736e9109093b9decf98f59e57097a04deef5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.10.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-1.10.0.tgz_1459489744951_0.568092871690169"},"directories":{}},"1.11.0":{"name":"rc-upload","version":"1.11.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8000},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x","sinon":"^1.17.3"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"9b5b6e13888a042b51ff4b42ac175a76f5426f17","_id":"rc-upload@1.11.0","_shasum":"8a3c6cc40ada6e877521faa98116e71bf4f69dee","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"dist":{"shasum":"8a3c6cc40ada6e877521faa98116e71bf4f69dee","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.11.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-1.11.0.tgz_1462284473064_0.14960792614147067"},"directories":{}},"1.12.0":{"name":"rc-upload","version":"1.12.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x","sinon":"^1.17.3"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"e6dac5bdd78708a170c45b036eaafb9533ed4f2b","_id":"rc-upload@1.12.0","_shasum":"1c8fc67a6f4387ae9b82e7c0f205a3be476c1464","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"1c8fc67a6f4387ae9b82e7c0f205a3be476c1464","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.12.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-1.12.0.tgz_1462872099684_0.6093059303238988"},"directories":{}},"1.13.0":{"name":"rc-upload","version":"1.13.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x","sinon":"^1.17.3"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"d05b1b2094d1e84ca76c1907cbb0159d042949c9","_id":"rc-upload@1.13.0","_shasum":"c47068df389de6c11d424d2789fcaf910acde857","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"c47068df389de6c11d424d2789fcaf910acde857","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.13.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-1.13.0.tgz_1464838761662_0.5888928815256804"},"directories":{}},"1.13.1":{"name":"rc-upload","version":"1.13.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x","sinon":"^1.17.3"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"e0fcf75a02471b84f3851b386d7297c1ef3b1eae","_id":"rc-upload@1.13.1","_shasum":"c578ff473b617483227bf236d1d041f579452be9","_from":".","_npmVersion":"3.5.3","_nodeVersion":"4.2.2","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"c578ff473b617483227bf236d1d041f579452be9","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.13.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-1.13.1.tgz_1464925477665_0.5217114500701427"},"directories":{}},"1.13.2":{"name":"rc-upload","version":"1.13.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x","sinon":"^1.17.3"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"9ea66cb4b5eca5cffa0086838f5d3941ced5fa15","_id":"rc-upload@1.13.2","_shasum":"dfd4626deef44e320408a8410dae21fead8da994","_from":".","_npmVersion":"2.15.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"dfd4626deef44e320408a8410dae21fead8da994","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.13.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-1.13.2.tgz_1465365156141_0.13556000962853432"},"directories":{}},"1.13.3":{"name":"rc-upload","version":"1.13.3","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x","sinon":"^1.17.3"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"867ca47104f717591b4651b37af9ce4c8579e073","_id":"rc-upload@1.13.3","_shasum":"26f883d8009e0c558d035c51d6e42646265b00c4","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"26f883d8009e0c558d035c51d6e42646265b00c4","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.13.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-1.13.3.tgz_1466140965963_0.2802019012160599"},"directories":{}},"1.14.0":{"name":"rc-upload","version":"1.14.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x","sinon":"^1.17.3"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"e8a8fe95b1c1e5355a283e22088e6f708d4b4669","_id":"rc-upload@1.14.0","_shasum":"c5512241851f0d98bfb15807cfe09392c5967d21","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"c5512241851f0d98bfb15807cfe09392c5967d21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-1.14.0.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-1.14.0.tgz_1468927213487_0.9257212246302515"},"directories":{}},"2.0.0":{"name":"rc-upload","version":"2.0.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node tests/starter","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":{"co-busboy":"^1.3.0","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.0","react-dom":"0.14.x","sinon":"^1.17.3"},"pre-commit":["lint"],"dependencies":{"warning":"2.x"},"gitHead":"29e48b13bcc39a0f170d5e675b8935ee43adfe05","_id":"rc-upload@2.0.0","_shasum":"1dbea109d003608b63f5546143cef7d56d3f9776","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"1dbea109d003608b63f5546143cef7d56d3f9776","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.0.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.0.0.tgz_1470892894249_0.6458999421447515"},"directories":{}},"2.0.1":{"name":"rc-upload","version":"2.0.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","warning":"2.x"},"gitHead":"745075c3235107ee28a78c9d87284095798ba141","_id":"rc-upload@2.0.1","_shasum":"db214408a002f5b8a2739f1505d8ebadf0da140a","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"db214408a002f5b8a2739f1505d8ebadf0da140a","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.0.1.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-2.0.1.tgz_1470900630269_0.21171906543895602"},"directories":{}},"2.0.2":{"name":"rc-upload","version":"2.0.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","warning":"2.x"},"gitHead":"2c8c8f51310400ed137e428bc8383efdddb72870","_id":"rc-upload@2.0.2","_shasum":"a7a7c0939de00683722c028263e9bd36023081f5","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a7a7c0939de00683722c028263e9bd36023081f5","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.0.2.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-2.0.2.tgz_1470905313642_0.06158696883358061"},"directories":{}},"2.0.3":{"name":"rc-upload","version":"2.0.3","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","warning":"2.x"},"gitHead":"f359c95e14d8dadd006675637c34850786ecc8a5","_id":"rc-upload@2.0.3","_shasum":"c3cdaa7c0142568b012f5e6bb14b68c565139f67","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"c3cdaa7c0142568b012f5e6bb14b68c565139f67","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.0.3.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.0.3.tgz_1471018910459_0.5475768577307463"},"directories":{}},"2.0.4":{"name":"rc-upload","version":"2.0.4","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","warning":"2.x"},"gitHead":"9ded337b2bdcbe85c01d09e26159f655e9b71c76","_id":"rc-upload@2.0.4","_shasum":"d9b742caf307e72fe0359c62e87d33ad3548acb3","_from":".","_npmVersion":"3.9.5","_nodeVersion":"4.4.5","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"d9b742caf307e72fe0359c62e87d33ad3548acb3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.0.4.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.0.4.tgz_1471262238935_0.3671201504766941"},"directories":{}},"2.1.0":{"name":"rc-upload","version":"2.1.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x"},"gitHead":"13a1dc168d429411b5a942bdef4e00beafdcb0a9","_id":"rc-upload@2.1.0","_shasum":"5082e8c049dd83afcb20f2b82e678afca6a3436d","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.12.0","_npmUser":{"name":"afc163","email":"afc163@gmail.com"},"dist":{"shasum":"5082e8c049dd83afcb20f2b82e678afca6a3436d","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.1.0.tgz"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.1.0.tgz_1474353573384_0.31028265692293644"},"directories":{}},"2.1.1":{"name":"rc-upload","version":"2.1.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x"},"gitHead":"dbf07351c26a153fc2eb17c3c14c3f6d6f8da021","_id":"rc-upload@2.1.1","_shasum":"81177639231b357259127896a4033ed3c87d039b","_from":".","_npmVersion":"2.15.1","_nodeVersion":"4.4.4","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"81177639231b357259127896a4033ed3c87d039b","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.1.1.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.1.1.tgz_1474631620306_0.6948323235847056"},"directories":{}},"2.2.0":{"name":"rc-upload","version":"2.2.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x"},"gitHead":"36b7d1a36f05ef48ecf6d1f93e79bf9c8ca33545","_id":"rc-upload@2.2.0","_shasum":"f22dd791acdc9a429bbec1223c9b4ea61c3ae6d6","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"afc163","email":"afc163@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f22dd791acdc9a429bbec1223c9b4ea61c3ae6d6","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.2.0.tgz"},"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.2.0.tgz_1476324582123_0.25685178814455867"},"directories":{}},"2.3.0":{"name":"rc-upload","version":"2.3.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x"},"gitHead":"aec23d6fb3164b863cca3e6ba58ad3aff31afe3b","_id":"rc-upload@2.3.0","_shasum":"76e012da4ea578ab3119d32452ea13066cfcb5bf","_from":".","_npmVersion":"3.10.7","_nodeVersion":"6.4.0","_npmUser":{"name":"benjycui","email":"benjytrys@gmail.com"},"dist":{"shasum":"76e012da4ea578ab3119d32452ea13066cfcb5bf","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.3.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.3.0.tgz_1481514411848_0.8201908268965781"},"directories":{}},"2.3.1":{"name":"rc-upload","version":"2.3.1","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x"},"gitHead":"25961cf4925be7fc2d03edad86d57e67ac9711f4","_id":"rc-upload@2.3.1","_shasum":"6a795372f80fbf1503a57d98a8dc61b4ce0ef957","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.9.1","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"6a795372f80fbf1503a57d98a8dc61b4ce0ef957","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.3.1.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-2.3.1.tgz_1482725470724_0.07729286351241171"},"directories":{}},"2.3.2":{"name":"rc-upload","version":"2.3.2","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x"},"gitHead":"3c66d3d765524860851b64897c926951c734642b","_id":"rc-upload@2.3.2","_shasum":"feeb7b84e45762a9c76523c94c960664ab0d6541","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"feeb7b84e45762a9c76523c94c960664ab0d6541","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.3.2.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.3.2.tgz_1483110327374_0.4304508410859853"},"directories":{}},"2.3.3":{"name":"rc-upload","version":"2.3.3","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x"},"gitHead":"eac29ade40fd03c35ecbbc6f72ad070250b5ddff","_id":"rc-upload@2.3.3","_shasum":"5e896b24e13c558b1bf24aa0c6a93825c9c42047","_from":".","_npmVersion":"3.10.3","_nodeVersion":"6.7.0","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"5e896b24e13c558b1bf24aa0c6a93825c9c42047","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.3.3.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.3.3.tgz_1487602523950_0.9783708055038005"},"directories":{}},"2.3.4":{"name":"rc-upload","version":"2.3.4","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x"},"gitHead":"f21d45bbe9149d653794a6dca68f9d984c510a0a","_id":"rc-upload@2.3.4","_shasum":"f8b5fe2dbc091b50a473ea6e0fdd0776b27747b3","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.1","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"f8b5fe2dbc091b50a473ea6e0fdd0776b27747b3","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.3.4.tgz"},"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/rc-upload-2.3.4.tgz_1489153123410_0.9891586436424404"},"directories":{}},"2.3.5":{"name":"rc-upload","version":"2.3.5","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib"],"main":"./lib/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node 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":{"co-busboy":"^1.3.0","expect.js":"0.3.x","pre-commit":"1.x","rc-tools":"5.x","react":"15.x","react-addons-test-utils":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x","prop-types":"^15.5.7"},"gitHead":"9b5a0e4e6a1b2ee5a7c7fddfa87028b4e6138be6","_id":"rc-upload@2.3.5","_shasum":"a9eea234393020dc1ae3eea9988841112538b9d0","_from":".","_npmVersion":"4.1.2","_nodeVersion":"7.7.1","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"dist":{"shasum":"a9eea234393020dc1ae3eea9988841112538b9d0","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.3.5.tgz"},"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.3.5.tgz_1493603647641_0.6528841082472354"},"directories":{}},"2.3.7":{"name":"rc-upload","version":"2.3.7","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib","es"],"main":"./lib/index","module":"./es/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"devDependencies":{"co-busboy":"^1.3.0","coveralls":"^2.13.1","expect.js":"0.3.x","jest":"^20.0.1","pre-commit":"1.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x","prop-types":"^15.5.7"},"jest":{"collectCoverageFrom":["src/*"],"coveragePathIgnorePatterns":["src/IframeUploader.jsx"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"gitHead":"5c920feefee28fa8631e7897658732815e0622d6","_id":"rc-upload@2.3.7","_shasum":"9f49e8e8a15919149ff71174ede8b50187ce2e63","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.10.0","_npmUser":{"name":"yiminghe","email":"yiminghe@gmail.com"},"dist":{"shasum":"9f49e8e8a15919149ff71174ede8b50187ce2e63","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.3.7.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/rc-upload-2.3.7.tgz_1494849264755_0.3579030828550458"},"directories":{}},"2.3.8":{"name":"rc-upload","version":"2.3.8","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib","es"],"main":"./lib/index","module":"./es/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"devDependencies":{"co-busboy":"^1.3.0","coveralls":"^2.13.1","expect.js":"0.3.x","jest":"^20.0.1","pre-commit":"1.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x","prop-types":"^15.5.7"},"jest":{"collectCoverageFrom":["src/*"],"coveragePathIgnorePatterns":["src/IframeUploader.jsx"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"gitHead":"3c0516876a6489698f153865a0676a33fe091c3e","_id":"rc-upload@2.3.8","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"dist":{"integrity":"sha512-R3NB6NcY5L41O/LNLpklrJ5vxTSwdqto72UgJ5ZHFF900Zmm3DrTc8TKWbL7qqcvV69oKsrB3xVR3x07XmtigA==","shasum":"eaf35913cfc2dced196dd9421df253f509a38e21","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.3.8.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-upload-2.3.8.tgz_1498052585259_0.6570752093102783"},"directories":{}},"2.4.0":{"name":"rc-upload","version":"2.4.0","description":"upload ui component for react","keywords":["react","react-component","react-upload","upload"],"homepage":"http://github.com/react-component/upload","repository":{"type":"git","url":"git+ssh://git@github.com/react-component/upload.git"},"bugs":{"url":"http://github.com/react-component/upload/issues"},"license":"MIT","files":["lib","es"],"main":"./lib/index","module":"./es/index","config":{"port":8020},"scripts":{"build":"rc-tools run build","gh-pages":"rc-tools run gh-pages","start":"node server","compile":"rc-tools run compile --babel-runtime","pub":"rc-tools run pub --babel-runtime","lint":"rc-tools run lint","test":"jest","coverage":"jest --coverage && cat ./coverage/lcov.info | coveralls"},"devDependencies":{"co-busboy":"^1.3.0","coveralls":"^2.13.1","expect.js":"0.3.x","jest":"^20.0.1","pre-commit":"1.x","rc-tools":"6.x","react":"15.x","react-dom":"15.x","sinon":"2.0.0-pre.2"},"pre-commit":["lint"],"dependencies":{"babel-runtime":"6.x","classnames":"^2.2.5","warning":"2.x","prop-types":"^15.5.7"},"jest":{"collectCoverageFrom":["src/*"],"coveragePathIgnorePatterns":["src/IframeUploader.jsx"],"transform":{"\\.tsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js","\\.jsx?$":"./node_modules/rc-tools/scripts/jestPreprocessor.js"}},"gitHead":"54255032ab4607070577db2e36647ee2a773b64f","_id":"rc-upload@2.4.0","_npmVersion":"5.0.3","_nodeVersion":"8.1.2","_npmUser":{"name":"shepherdwind","email":"eward.song@gmail.com"},"dist":{"integrity":"sha512-F7v8Wqv5U8WqW3qc1K+f4+SCc1dzfoi7B57lBPNhevA3S8THod9o3Ks21I1tMVTP9ozXRFA1aimJjN6ycBELuw==","shasum":"a664ff9c7df2525090441cfa01d93e7f39bfc3ad","tarball":"http://nexus.dui88.com:8081/nexus/content/groups/npm-all/rc-upload/-/rc-upload-2.4.0.tgz"},"maintainers":[{"name":"afc163","email":"afc163@gmail.com"},{"name":"benjycui","email":"benjytrys@gmail.com"},{"name":"shepherdwind","email":"eward.song@gmail.com"},{"name":"yiminghe","email":"yiminghe@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/rc-upload-2.4.0.tgz_1500121053753_0.6657857559621334"},"directories":{}}},"name":"rc-upload","time":{"modified":"2017-07-15T12:17:33.970Z","created":"2015-05-23T13:21:06.217Z","1.0.0":"2015-05-23T13:21:06.217Z","1.1.0":"2015-05-27T23:40:33.294Z","1.1.1":"2015-06-24T07:38:52.020Z","1.1.2":"2015-06-24T08:20:10.451Z","1.2.0":"2015-06-24T08:31:24.985Z","1.2.1":"2015-06-24T09:29:55.984Z","1.2.2":"2015-06-24T22:54:37.527Z","1.2.3":"2015-07-17T09:29:17.711Z","1.2.4-beta1":"2015-08-05T06:57:35.992Z","1.2.4-beta2":"2015-08-05T14:45:32.020Z","1.3.0":"2015-08-12T11:17:22.237Z","1.3.1":"2015-08-18T07:56:10.718Z","1.3.2":"2015-08-21T06:57:29.170Z","1.3.3":"2015-08-27T08:18:02.998Z","1.3.4":"2015-08-31T13:58:14.090Z","1.3.5":"2015-09-01T03:51:32.826Z","1.3.6":"2015-09-08T09:29:05.343Z","1.3.7":"2015-09-08T09:31:50.455Z","1.4.0":"2015-09-09T06:54:55.044Z","1.4.1":"2015-09-09T14:41:00.789Z","1.4.2":"2015-09-15T08:16:48.403Z","1.4.3":"2015-09-15T10:16:49.991Z","1.4.4":"2015-09-15T23:25:41.888Z","1.5.1":"2015-09-16T09:22:51.696Z","1.5.2":"2015-09-18T00:26:35.636Z","1.5.3":"2015-09-18T02:47:27.034Z","1.5.4":"2015-09-18T08:46:06.593Z","1.5.5":"2015-09-18T08:53:26.188Z","1.5.6":"2015-09-18T14:51:48.942Z","1.6.0":"2015-09-18T19:17:44.636Z","1.6.1":"2015-09-19T04:07:57.351Z","1.6.2":"2015-09-19T06:23:40.116Z","1.5.7":"2015-09-19T09:35:18.493Z","1.5.8":"2015-09-20T05:07:12.168Z","1.5.9":"2015-09-20T05:55:37.713Z","1.6.3":"2015-09-20T07:19:24.505Z","1.6.4":"2015-09-21T03:22:01.263Z","1.6.5":"2015-09-21T06:25:44.124Z","1.6.6-beta.1":"2015-09-28T07:03:50.030Z","1.6.6":"2015-09-29T10:09:49.042Z","1.6.7-beta":"2015-10-26T15:15:07.684Z","1.7.0":"2015-10-27T03:42:41.402Z","1.7.1":"2016-01-08T10:23:13.628Z","1.7.2":"2016-01-13T13:08:48.154Z","1.8.0":"2016-01-14T13:13:08.558Z","1.8.1":"2016-03-16T05:44:07.830Z","1.9.0":"2016-03-23T09:05:02.505Z","1.10.0":"2016-04-01T05:49:05.463Z","1.11.0":"2016-05-03T14:07:54.367Z","1.12.0":"2016-05-10T09:21:40.125Z","1.13.0":"2016-06-02T03:39:23.048Z","1.13.1":"2016-06-03T03:44:39.881Z","1.13.2":"2016-06-08T05:52:38.444Z","1.13.3":"2016-06-17T05:22:47.018Z","1.14.0":"2016-07-19T11:20:15.353Z","2.0.0":"2016-08-11T05:21:35.037Z","2.0.1":"2016-08-11T07:30:32.255Z","2.0.2":"2016-08-11T08:48:35.419Z","2.0.3":"2016-08-12T16:21:51.940Z","2.0.4":"2016-08-15T11:57:20.719Z","2.1.0":"2016-09-20T06:39:35.406Z","2.1.1":"2016-09-23T11:53:41.307Z","2.2.0":"2016-10-13T02:09:43.063Z","2.3.0":"2016-12-12T03:46:52.406Z","2.3.1":"2016-12-26T04:11:10.981Z","2.3.2":"2016-12-30T15:05:29.166Z","2.3.3":"2017-02-20T14:55:26.000Z","2.3.4":"2017-03-10T13:38:43.675Z","2.3.5":"2017-05-01T01:54:09.507Z","2.3.7":"2017-05-15T11:54:27.161Z","2.3.8":"2017-06-21T13:43:05.352Z","2.4.0":"2017-07-15T12:17:33.970Z"},"readmeFilename":"README.md","homepage":"http://github.com/react-component/upload"}