-
Notifications
You must be signed in to change notification settings - Fork 128
/
bower.json
29 lines (29 loc) · 903 Bytes
/
bower.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{
"name": "localStorageDB",
"main": "localstoragedb.js",
"version": "2.3.2",
"homepage": "https://github.com/knadh/localStorageDB",
"authors": [
"Kailash Nadh <[email protected]>"
],
"description": "localStorageDB is a simple layer over localStorage (and sessionStorage) that provides a set of functions to store structured data like databases and tables. It provides basic insert/update/delete/query capabilities. localStorageDB has no dependencies, and is not based on WebSQL. Underneath it all, the structured data is stored as serialized JSON in localStorage or sessionStorage.",
"keywords": [
"localstorage",
"sessionstorage",
"sql",
"queries",
"websql"
],
"license": "MIT",
"ignore": [
"**/.*",
"node_modules",
"bower_components",
"test",
"tests"
],
"devDependencies": {
"mocha": "~2.1.0",
"chai": "~1.10.0"
}
}