-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1014 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 1014 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "indexed-storage",
"version": "1.0.7",
"description": "Simple implementation of local storage with indexedDB",
"main": "dist/index.js",
"module": "src/index.js",
"author": "Maksim Podvarkov <i.snova.bebebe@gmail.com>",
"homepage": "https://github.com/podvarkov/indexed-storage",
"repository": {
"type": "git",
"url": "https://github.com/podvarkov/indexed-storage"
},
"keywords": [
"index db",
"indexDb",
"localStorage",
"sessionStorage",
"webStorage",
"storage"
],
"license": "MIT",
"private": false,
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "babel src/index.js --out-dir dist"
},
"peerDependencies": {
"dexie": "^2.0.4"
},
"devDependencies": {
"@babel/cli": "^7.1.5",
"@babel/core": "^7.1.6",
"@babel/plugin-transform-async-to-generator": "^7.1.0",
"@babel/preset-env": "^7.1.6"
},
"dependencies": {
"dexie": "^2.0.4"
},
"browserslist": "> 0.25%, not dead"
}