├── .gitignore ├── .jshintrc ├── CHANGELOG ├── Gruntfile.js ├── README.md ├── UNLICENSE ├── bower.json ├── dist └── iso-3166-country-codes-angular.min.js ├── index.js ├── iso-3166-country-codes-angular.d.ts ├── package.json └── src └── iso-3166-country-codes-angular.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.swp 3 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/.jshintrc -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/CHANGELOG -------------------------------------------------------------------------------- /Gruntfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/Gruntfile.js -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/README.md -------------------------------------------------------------------------------- /UNLICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/UNLICENSE -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/bower.json -------------------------------------------------------------------------------- /dist/iso-3166-country-codes-angular.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/dist/iso-3166-country-codes-angular.min.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/index.js -------------------------------------------------------------------------------- /iso-3166-country-codes-angular.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/iso-3166-country-codes-angular.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/package.json -------------------------------------------------------------------------------- /src/iso-3166-country-codes-angular.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rsertelon/iso-3166-country-codes-angular/HEAD/src/iso-3166-country-codes-angular.js --------------------------------------------------------------------------------