├── .gitignore ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── UPGRADING.md ├── package.json ├── prettier.config.js ├── src ├── components │ └── SipProvider │ │ └── index.ts ├── index.ts └── lib │ ├── dummyLogger.ts │ ├── enums.ts │ └── types.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/README.md -------------------------------------------------------------------------------- /UPGRADING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/UPGRADING.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/prettier.config.js -------------------------------------------------------------------------------- /src/components/SipProvider/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/src/components/SipProvider/index.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/lib/dummyLogger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/src/lib/dummyLogger.ts -------------------------------------------------------------------------------- /src/lib/enums.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/src/lib/enums.ts -------------------------------------------------------------------------------- /src/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/src/lib/types.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/callthemonline/react-sip/HEAD/tslint.json --------------------------------------------------------------------------------