summaryrefslogtreecommitdiff
path: root/packages/idb-bridge/package.json
blob: 52396bfe9ad54fd6bffa60aa8b344bb487d79769 (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": "2.1.0",
    "typescript": "^3.4.5"
  }
}