wallet-core/packages/idb-bridge/package.json

19 lines
408 B
JSON
Raw Normal View History

2019-06-15 22:44:54 +02:00
{
"name": "idb-bridge",
2019-08-16 23:29:29 +02:00
"version": "0.0.6",
2019-06-15 22:44:54 +02:00
"description": "IndexedDB implementation that uses SQLite3 as storage",
2019-07-21 23:50:10 +02:00
"main": "./build/index.js",
"types": "./build/index.d.ts",
2019-06-15 22:44:54 +02:00
"author": "Florian Dold",
"license": "AGPL-3.0-or-later",
"private": false,
"scripts": {
2019-07-21 23:50:10 +02:00
"test": "tsc && ava",
"build": "tsc"
2019-06-15 22:44:54 +02:00
},
"devDependencies": {
2019-06-21 19:18:36 +02:00
"ava": "2.1.0",
2019-06-15 22:44:54 +02:00
"typescript": "^3.4.5"
}
}