├── .babelrc ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── _config.yml ├── dist └── index.js ├── package.json ├── src └── index.js ├── tests ├── browser │ ├── __init.test.js │ ├── index.test.js │ └── karma.conf.js └── react │ └── index.test.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/.babelrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .idea/ 3 | npm-debug.log 4 | *.sw[ponm] 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/_config.yml -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/browser/__init.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/tests/browser/__init.test.js -------------------------------------------------------------------------------- /tests/browser/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/tests/browser/index.test.js -------------------------------------------------------------------------------- /tests/browser/karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/tests/browser/karma.conf.js -------------------------------------------------------------------------------- /tests/react/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/tests/react/index.test.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/supermedium/aframe-react/HEAD/yarn.lock --------------------------------------------------------------------------------