Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Apr 24, 2014
0 parents commit b51a470
Show file tree
Hide file tree
Showing 15 changed files with 713 additions and 0 deletions.
16 changes: 16 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# editorconfig.org
root = true

[*]
indent_style = tab
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[package.json]
indent_style = space
indent_size = 2

[*.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
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
node_modules
19 changes: 19 additions & 0 deletions .jshintrc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"node": true,
"esnext": true,
"bitwise": true,
"camelcase": true,
"curly": true,
"eqeqeq": true,
"immed": true,
"indent": 4,
"newcap": true,
"noarg": true,
"quotmark": "single",
"regexp": true,
"undef": true,
"unused": true,
"strict": true,
"trailing": true,
"smarttabs": true
}
3 changes: 3 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
language: node_js
node_js:
- '0.10'
54 changes: 54 additions & 0 deletions bower.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
{
"name": "file-type",
"description": "Detect the file type of a Buffer/Uint8Array",
"license": "MIT",
"main": "browser.js",
"authors": [
{
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
}
],
"keywords": [
"file",
"type",
"archive",
"image",
"img",
"pic",
"picture",
"photo",
"type",
"detect",
"check",
"is",
"exif",
"binary",
"buffer",
"uint8array",
"cli",
"bin",
"png",
"jpg",
"gif",
"webp",
"tif",
"bmp",
"jxr",
"psd",
"7z",
"bz2",
"gz",
"rar",
"tar",
"zip"
],
"ignore": [
".*",
"test.js",
"component.json",
"package.json",
"fixture*"
]
}
Loading

0 comments on commit b51a470

Please sign in to comment.