├── .bowerrc ├── .gitignore ├── LICENSE.txt ├── README.md ├── angular-hyper-resource.js ├── angular-hyper-resource.spec.js ├── bower.json └── karma.config.js /.bowerrc: -------------------------------------------------------------------------------- 1 | { 2 | "directory": "vendor" 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | vendor 2 | -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndgiese/angular-hyper-resource/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndgiese/angular-hyper-resource/HEAD/README.md -------------------------------------------------------------------------------- /angular-hyper-resource.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndgiese/angular-hyper-resource/HEAD/angular-hyper-resource.js -------------------------------------------------------------------------------- /angular-hyper-resource.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndgiese/angular-hyper-resource/HEAD/angular-hyper-resource.spec.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndgiese/angular-hyper-resource/HEAD/bower.json -------------------------------------------------------------------------------- /karma.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/johndgiese/angular-hyper-resource/HEAD/karma.config.js --------------------------------------------------------------------------------