-
Notifications
You must be signed in to change notification settings - Fork 130
/
package.json
23 lines (23 loc) · 891 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "localstoragedb",
"version": "2.3.2",
"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.",
"main": "localstoragedb.js",
"scripts": {},
"repository": {
"type": "git",
"url": "git+https://github.com/knadh/localStorageDB.git"
},
"keywords": [
"localStorage",
"database"
],
"author": "Kailash Nadh <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/knadh/localStorageDB/issues"
},
"homepage": "https://github.com/knadh/localStorageDB",
"dependencies": {},
"devDependencies": {}
}