├── .babelrc ├── .editorconfig ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── karma.conf.js ├── package.json ├── src ├── angularTemplate.js ├── angularTemplate.test.js └── index.js └── tests.webpack.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/README.md -------------------------------------------------------------------------------- /karma.conf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/karma.conf.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/package.json -------------------------------------------------------------------------------- /src/angularTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/src/angularTemplate.js -------------------------------------------------------------------------------- /src/angularTemplate.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/src/angularTemplate.test.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/src/index.js -------------------------------------------------------------------------------- /tests.webpack.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fmauquie/react-angular/HEAD/tests.webpack.js --------------------------------------------------------------------------------