Skip to content

Commit

Permalink
chore: first commit, v0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
t1st3 committed Apr 2, 2015
1 parent 027f1a7 commit 6bc6997
Show file tree
Hide file tree
Showing 8 changed files with 157 additions and 21 deletions.
4 changes: 4 additions & 0 deletions .bowerrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"directory": "bower_components",
"json": "bower.json"
}
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# http://editorconfig.org
root = true

[*]
indent_style = space
indent_size = 2
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* text=auto
34 changes: 13 additions & 21 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,28 +1,20 @@
# Logs
logs
lib-cov
*.seed
*.log

# Runtime data
pids
*.csv
*.dat
*.out
*.pid
*.seed
*.gz

# Directory for instrumented libs generated by jscoverage/JSCover
lib-cov

# Coverage directory used by tools like istanbul
coverage

# Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files)
.grunt
.directory
.DS_Store

# Compiled binary addons (http://nodejs.org/api/addons.html)
build/Release
pids
logs
results

# Dependency directory
# Commenting this out is preferred by some people, see
# https://www.npmjs.org/doc/misc/npm-faq.html#should-i-check-my-node_modules-folder-into-git-
npm-debug.log
node_modules

# Users Environment Variables
.lock-wscript
bower_components
17 changes: 17 additions & 0 deletions .npmignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
.directory
.DS_Store

bower_components
.bowerrc
bower.json

.git
.gitignore
.gitattributes

gulpfile.js

.travis.yml
.editorconfig

src
36 changes: 36 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
{
"name": "license-icons",
"version": "0.1.0",
"homepage": "https://github.com/T1st3/license-icons",
"description": "Icons and logos from various licenses of the coding community",
"keywords": [
"icon",
"vendor",
"png",
"css",
"spritesheet"
],
"license": "MIT",
"authors": [
"t1st3 <contact@tiste.org> (http://www.tiste.org/)"
],
"main": [
"./dist"
],
"ignore": [
"bower_components",
".bowerrc",
"node_modules",
"package.json",
".git",
".gitignore",
".gitattributes",
".npmignore",
".editorconfig",
"gulpfile.js",
".editorconfig",
".travis.yml",
".npmignore"
],
"dependencies": {}
}
32 changes: 32 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
{
"name": "t1st3/license-icons",
"homepage": "https://github.com/T1st3/license-icons",
"description": "Icons and logos from various licenses of the coding community",
"keywords": [
"icon",
"vendor",
"png",
"css",
"spritesheet"
],
"license": "MIT",
"authors": [
{
"name": "T1st3",
"email": "contact@tiste.org",
"homepage": "http://www.tiste.org/",
"role": "Maintainer"
}
],
"support": {
"issues": "https://github.com/T1st3/license-icons/issues/"
},
"type": "library",
"extra": {
"component": {
"files": [
"dist/*"
]
}
}
}
41 changes: 41 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
{
"name": "license-icons",
"version": "0.1.0",
"homepage": "https://github.com/T1st3/license-icons",
"description": "Icons and logos from various licenses of the coding community",
"keywords": [
"icon",
"license",
"png",
"css",
"spritesheet"
],
"license": "MIT",
"author": "t1st3 <contact@tiste.org> (http://www.tiste.org/)",
"repository": {
"type": "git",
"url": "git://github.com/T1st3/license-icons.git"
},
"bugs": {
"url": "https://github.com/T1st3/license-icons/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"dependencies": {},
"devDependencies": {
"chalk": "~1.0",
"cowsay": "~1.0",
"del": "~1.1",
"figlet": "~1.1",
"gulp": "~3.8",
"gulp-gm": "~0.0",
"gulp-imagemin": "~2.2",
"gulp-minify-css": "~1.0",
"gulp-notify": "~2.2",
"gulp-rename": "~1.2",
"node-spritesheet": "~0.4",
"qrcode-terminal": "~0.9",
"somebody": "~2.0"
}
}

0 comments on commit 6bc6997

Please sign in to comment.