Skip to content

Commit eb59561

Browse files
committed
adds readme, jshintrc, gitignore, and bower file
1 parent fd36858 commit eb59561

File tree

4 files changed

+80
-1
lines changed

4 files changed

+80
-1
lines changed

.gitignore

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
.DS_Store
2+
bower_components

.jshintrc

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
{
2+
"camelcase": true,
3+
"curly": true,
4+
"eqeqeq": true,
5+
"indent": 2,
6+
"latedef": true,
7+
"quotmark": "single",
8+
"undef": true,
9+
"unused": true,
10+
"strict": true,
11+
"trailing": true,
12+
"smarttabs": true,
13+
"globals": {
14+
"angular": true,
15+
"console": true,
16+
"require": true,
17+
"io": true
18+
}
19+
}

README.md

+32-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,35 @@
11
angular-minicolors
22
==================
33

4-
A wrapper around JQuery MiniColors
4+
## General
5+
6+
My first try of wrtiting a wrapper-directive around JQuery MiniColors by [Cory LaViska ](https://github.com/claviska) (https://github.com/claviska/jquery-minicolors)
7+
8+
## How To Install
9+
10+
## How To Use
11+
12+
## Found a Issue?
13+
14+
## Copyright and license
15+
16+
The MIT License (MIT)
17+
18+
Copyright (c) 2013 Kai Henzler
19+
20+
Permission is hereby granted, free of charge, to any person obtaining a copy of
21+
this software and associated documentation files (the "Software"), to deal in
22+
the Software without restriction, including without limitation the rights to
23+
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of
24+
the Software, and to permit persons to whom the Software is furnished to do so,
25+
subject to the following conditions:
26+
27+
The above copyright notice and this permission notice shall be included in all
28+
copies or substantial portions of the Software.
29+
30+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
31+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
32+
FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR
33+
COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
34+
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
35+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

bower.json

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "angular-minicolors",
3+
"version": "0.0.1",
4+
"homepage": "https://github.com/kaihenzler/angular-minicolors",
5+
"authors": [
6+
"Kai Henzler <[email protected]>"
7+
],
8+
"description": "A wrapper around JQuery MiniColors by Cory LaViska",
9+
"keywords": [
10+
"angular",
11+
"colorpicker",
12+
"minicolors"
13+
],
14+
"main": "dist/angular-minicolors.js",
15+
"dependencies": {
16+
"jquery-minicolors": "~2.1.1"
17+
},
18+
"license": "MIT",
19+
"private": true,
20+
"ignore": [
21+
"**/.*",
22+
"node_modules",
23+
"bower_components",
24+
"test",
25+
"tests"
26+
]
27+
}

0 commit comments

Comments
 (0)