-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
40 lines (40 loc) · 917 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "indexeddb-export-import",
"version": "2.1.5",
"description": "Export/import an IndexedDB database to/from JSON ",
"main": "index.js",
"scripts": {
"test": "mocha",
"lint": "eslint . --ext .js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Polarisation/indexeddb-export-import.git"
},
"keywords": [
"IndexedDB",
"JSON",
"import",
"export",
"serialize",
"deserialize",
"backup",
"restore"
],
"author": "Justin Emery",
"license": "MIT",
"bugs": {
"url": "https://github.com/Polarisation/indexeddb-export-import/issues"
},
"homepage": "https://github.com/Polarisation/indexeddb-export-import#readme",
"devDependencies": {
"dexie": "^3.0.3",
"eslint": "^8.2.0",
"eslint-config-google": "^0.14.0",
"fake-indexeddb": "^3.1.7",
"mocha": "^9.1.3"
},
"engines": {
"node": ">=12"
}
}