forked from knadh/localStorageDB
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 875 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 875 Bytes
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
{
"name": "localStorageDB",
"version": "2.3.1",
"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",
"author": "Kailash Nadh <kailash.nadh@gmail.com>",
"main": "localstoragedb.js",
"repository": {
"type": "git",
"url": "https://github.com/knadh/localStorageDB"
},
"jspm": {
"main": "localStorageDB",
"format": "amd",
"directories": {
"lib": "dist/amd"
}
}
}