├── .gitignore ├── .jshintrc ├── LICENSE ├── README.md ├── angular-minicolors.js ├── bower.json └── package.json /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | bower_components -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaihenzler/angular-minicolors/HEAD/.jshintrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaihenzler/angular-minicolors/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaihenzler/angular-minicolors/HEAD/README.md -------------------------------------------------------------------------------- /angular-minicolors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaihenzler/angular-minicolors/HEAD/angular-minicolors.js -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaihenzler/angular-minicolors/HEAD/bower.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/kaihenzler/angular-minicolors/HEAD/package.json --------------------------------------------------------------------------------