aboutsummaryrefslogtreecommitdiff
path: root/packages/idb-bridge/package.json
blob: 4279bb3a9f214b4a3c8f16ece4465162541d6712 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  "name": "idb-bridge",
  "version": "0.0.1",
  "description": "IndexedDB implementation that uses SQLite3 as storage",
  "main": "index.js",
  "author": "Florian Dold",
  "license": "AGPL-3.0-or-later",
  "private": false,
  "dependencies": {
    "sqlite3": "^4.0.8"
  },
  "scripts": {
    "test": "tsc && ava"
  },
  "devDependencies": {
    "ava": "^1.4.1",
    "typescript": "^3.4.5"
  }
}