-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
26 lines (26 loc) · 879 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
24
25
26
{
"name": "localdata",
"version": "0.1.4",
"description": "Increase localStorage size 10 times or more! This tiny script uses bare minimum of IndexedDB to give you a simple key - value local storage system. It's asnychchronous so it's performance is also faster than native localStorage(in theory and this must be confirmed by testing)",
"main": "localdata.min.js",
"scripts": {
"build": "uglifyjs -c -m -- localdata.js > localdata.min.js",
"start": "http-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/DVLP/localStorageDB.git"
},
"author": "Pawel",
"license": "MIT",
"bugs": {
"url": "https://github.com/DVLP/localStorageDB/issues"
},
"homepage": "https://github.com/DVLP/localStorageDB#readme",
"devDependencies": {
"uglify-js": "^3.15.0"
},
"dependencies": {
"http-server": "^14.1.0"
}
}