Skip to content

Commit c02bf61

Browse files
committed
Add some config files
1 parent 1070094 commit c02bf61

File tree

5 files changed

+62
-1
lines changed

5 files changed

+62
-1
lines changed

.editorconfig

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
# EditorConfig helps developers define and maintain consistent
2+
# coding styles between different editors and IDEs
3+
# editorconfig.org
4+
5+
root = true
6+
7+
[*]
8+
end_of_line = lf
9+
charset = utf-8
10+
trim_trailing_whitespace = true
11+
insert_final_newline = true
12+
indent_style = space
13+
indent_size = 2
14+
15+
[*.js]
16+
indent_style = space
17+
indent_size = 2
18+

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text=auto

.gitignore

+22
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
# Project specific stuff
2+
webpack-stats.json
3+
4+
# npm stuff
5+
node_modules/
6+
npm-debug.log
7+
8+
# Editor Stuff
9+
*.sublime-project
10+
*.sublime-workspace
11+
*.bak
12+
*~
13+
14+
# System stuff
15+
.DS_Store
16+
.Spotlight-V100
17+
.Trashes
18+
Thumbs.db
19+
ehthumbs.db
20+
Desktop.ini
21+
$RECYCLE.BIN/
22+
.directory

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# idb-simple
22

3-
This library wraps [idb library]() implement a simple key-value storage on top and add some helper methods such as for storing images
3+
This library wraps [idb library](https://github.com/jakearchibald/idb) implement a simple key-value storage on top and add some helper methods such as for storing images
44

55
## Getting started
66

package.json

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
{
2+
"name": "idb-simple",
3+
"version": "0.0.1",
4+
"description": "Implement a simple key-value storage for indexedDB on top and add some helper methods such as for storing images",
5+
"main": "index.js",
6+
"scripts": {
7+
"test": "echo \"Error: no test specified\" && exit 1"
8+
},
9+
"keywords": [
10+
"indexedDB",
11+
"storage",
12+
"node.js",
13+
"browser"
14+
],
15+
"author": "Carlos Galarza <[email protected]>",
16+
"license": "MIT",
17+
"dependencies": {
18+
"idb": "^2.0.3"
19+
}
20+
}

0 commit comments

Comments
 (0)