├── .babelrc.js ├── .gitattributes ├── .gitignore ├── .npmignore ├── EpubReader ├── .buckconfig ├── .flowconfig ├── .gitattributes ├── .gitignore ├── .watchmanconfig ├── App.js ├── __tests__ │ └── App-test.js ├── android │ ├── app │ │ ├── BUCK │ │ ├── build.gradle │ │ ├── build_defs.bzl │ │ ├── proguard-rules.pro │ │ └── src │ │ │ ├── debug │ │ │ └── AndroidManifest.xml │ │ │ └── main │ │ │ ├── AndroidManifest.xml │ │ │ ├── assets │ │ │ └── fonts │ │ │ │ ├── AntDesign.ttf │ │ │ │ ├── Entypo.ttf │ │ │ │ ├── EvilIcons.ttf │ │ │ │ ├── Feather.ttf │ │ │ │ ├── FontAwesome.ttf │ │ │ │ ├── FontAwesome5_Brands.ttf │ │ │ │ ├── FontAwesome5_Regular.ttf │ │ │ │ ├── FontAwesome5_Solid.ttf │ │ │ │ ├── Fontisto.ttf │ │ │ │ ├── Foundation.ttf │ │ │ │ ├── Ionicons.ttf │ │ │ │ ├── MaterialCommunityIcons.ttf │ │ │ │ ├── MaterialIcons.ttf │ │ │ │ ├── Octicons.ttf │ │ │ │ ├── SimpleLineIcons.ttf │ │ │ │ └── Zocial.ttf │ │ │ ├── java │ │ │ └── com │ │ │ │ └── epubreader │ │ │ │ ├── MainActivity.java │ │ │ │ └── MainApplication.java │ │ │ └── res │ │ │ ├── mipmap-hdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-mdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ ├── mipmap-xxxhdpi │ │ │ ├── ic_launcher.png │ │ │ └── ic_launcher_round.png │ │ │ └── values │ │ │ ├── strings.xml │ │ │ └── styles.xml │ ├── build.gradle │ ├── gradle.properties │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── keystores │ │ ├── BUCK │ │ └── debug.keystore.properties │ └── settings.gradle ├── app.json ├── app │ ├── BottomBar.js │ ├── Nav.js │ └── TopBar.js ├── babel.config.js ├── index.js ├── ios │ ├── EpubReader-tvOS │ │ └── Info.plist │ ├── EpubReader-tvOSTests │ │ └── Info.plist │ ├── EpubReader.xcodeproj │ │ ├── project.pbxproj │ │ └── xcshareddata │ │ │ └── xcschemes │ │ │ ├── EpubReader-tvOS.xcscheme │ │ │ └── EpubReader.xcscheme │ ├── EpubReader │ │ ├── AppDelegate.h │ │ ├── AppDelegate.m │ │ ├── Base.lproj │ │ │ └── LaunchScreen.xib │ │ ├── Images.xcassets │ │ │ ├── AppIcon.appiconset │ │ │ │ └── Contents.json │ │ │ └── Contents.json │ │ ├── Info.plist │ │ └── main.m │ └── EpubReaderTests │ │ ├── EpubReaderTests.m │ │ └── Info.plist ├── metro.config.js ├── package-lock.json ├── package.json └── yarn.lock ├── README.md ├── contents └── bridge.js ├── gulpfile.js ├── license ├── package.json └── src ├── Epub.js ├── Rendition.js ├── Streamer.js └── index.js /.babelrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/.babelrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/.npmignore -------------------------------------------------------------------------------- /EpubReader/.buckconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/.buckconfig -------------------------------------------------------------------------------- /EpubReader/.flowconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/.flowconfig -------------------------------------------------------------------------------- /EpubReader/.gitattributes: -------------------------------------------------------------------------------- 1 | *.pbxproj -text 2 | -------------------------------------------------------------------------------- /EpubReader/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/.gitignore -------------------------------------------------------------------------------- /EpubReader/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /EpubReader/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/App.js -------------------------------------------------------------------------------- /EpubReader/__tests__/App-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/__tests__/App-test.js -------------------------------------------------------------------------------- /EpubReader/android/app/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/BUCK -------------------------------------------------------------------------------- /EpubReader/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/build.gradle -------------------------------------------------------------------------------- /EpubReader/android/app/build_defs.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/build_defs.bzl -------------------------------------------------------------------------------- /EpubReader/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /EpubReader/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/AntDesign.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/AntDesign.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/Entypo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/Entypo.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/EvilIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/EvilIcons.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/Feather.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/Feather.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/FontAwesome.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/FontAwesome.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/FontAwesome5_Brands.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/FontAwesome5_Regular.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/FontAwesome5_Solid.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/Fontisto.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/Fontisto.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/Foundation.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/Foundation.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/Ionicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/Ionicons.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/MaterialCommunityIcons.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/MaterialIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/MaterialIcons.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/Octicons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/Octicons.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/SimpleLineIcons.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/SimpleLineIcons.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/assets/fonts/Zocial.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/assets/fonts/Zocial.ttf -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/java/com/epubreader/MainActivity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/java/com/epubreader/MainActivity.java -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/java/com/epubreader/MainApplication.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/java/com/epubreader/MainApplication.java -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /EpubReader/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /EpubReader/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/build.gradle -------------------------------------------------------------------------------- /EpubReader/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/gradle.properties -------------------------------------------------------------------------------- /EpubReader/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /EpubReader/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /EpubReader/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/gradlew -------------------------------------------------------------------------------- /EpubReader/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/gradlew.bat -------------------------------------------------------------------------------- /EpubReader/android/keystores/BUCK: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/keystores/BUCK -------------------------------------------------------------------------------- /EpubReader/android/keystores/debug.keystore.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/keystores/debug.keystore.properties -------------------------------------------------------------------------------- /EpubReader/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/android/settings.gradle -------------------------------------------------------------------------------- /EpubReader/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/app.json -------------------------------------------------------------------------------- /EpubReader/app/BottomBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/app/BottomBar.js -------------------------------------------------------------------------------- /EpubReader/app/Nav.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/app/Nav.js -------------------------------------------------------------------------------- /EpubReader/app/TopBar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/app/TopBar.js -------------------------------------------------------------------------------- /EpubReader/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/babel.config.js -------------------------------------------------------------------------------- /EpubReader/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/index.js -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader-tvOS/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader-tvOS/Info.plist -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader-tvOSTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader-tvOSTests/Info.plist -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader.xcodeproj/xcshareddata/xcschemes/EpubReader-tvOS.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader.xcodeproj/xcshareddata/xcschemes/EpubReader-tvOS.xcscheme -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader.xcodeproj/xcshareddata/xcschemes/EpubReader.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader.xcodeproj/xcshareddata/xcschemes/EpubReader.xcscheme -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader/AppDelegate.h -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader/AppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader/AppDelegate.m -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader/Base.lproj/LaunchScreen.xib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader/Base.lproj/LaunchScreen.xib -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader/Info.plist -------------------------------------------------------------------------------- /EpubReader/ios/EpubReader/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReader/main.m -------------------------------------------------------------------------------- /EpubReader/ios/EpubReaderTests/EpubReaderTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReaderTests/EpubReaderTests.m -------------------------------------------------------------------------------- /EpubReader/ios/EpubReaderTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/ios/EpubReaderTests/Info.plist -------------------------------------------------------------------------------- /EpubReader/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/metro.config.js -------------------------------------------------------------------------------- /EpubReader/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/package-lock.json -------------------------------------------------------------------------------- /EpubReader/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/package.json -------------------------------------------------------------------------------- /EpubReader/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/EpubReader/yarn.lock -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/README.md -------------------------------------------------------------------------------- /contents/bridge.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/contents/bridge.js -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/gulpfile.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/package.json -------------------------------------------------------------------------------- /src/Epub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/src/Epub.js -------------------------------------------------------------------------------- /src/Rendition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/src/Rendition.js -------------------------------------------------------------------------------- /src/Streamer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/src/Streamer.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/futurepress/epubjs-rn/HEAD/src/index.js --------------------------------------------------------------------------------