├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── core ├── auth.js ├── conf.js ├── imageOps.js ├── rpc.js └── rs.js ├── index.js └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/README.md -------------------------------------------------------------------------------- /core/auth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/core/auth.js -------------------------------------------------------------------------------- /core/conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/core/conf.js -------------------------------------------------------------------------------- /core/imageOps.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/core/imageOps.js -------------------------------------------------------------------------------- /core/rpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/core/rpc.js -------------------------------------------------------------------------------- /core/rs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/core/rs.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/buhe/react-native-qiniu/HEAD/package.json --------------------------------------------------------------------------------