forked from microsoft/NoSQLProvider
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 798 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
{
"name": "nosqlprovider",
"version": "0.1.3",
"description": "A cross-browser/platform indexeddb-like client library",
"author": "David de Regt <[email protected]>",
"scripts": {
"test": "mocha dist/tests/NoSqlProviderTests.js"
},
"main": "dist/nosqlprovider.js",
"dependencies": {
"lodash": "^3.10.0",
"synctasks": "^0.1.2"
},
"devDependencies": {
"indexeddb-js": "^0.0.14",
"sqlite3": "^3.0.9"
},
"repository": {
"type": "git",
"url": "https://github.com/deregtd/NoSQLProvider"
},
"bugs": {
"url": "https://github.com/deregtd/NoSQLProvider/issues"
},
"typings": "dist/nosqlprovider.d.ts",
"typescript": {
"definition": "dist/nosqlprovider.d.ts"
},
"keywords": [
"nosql",
"indexeddb",
"websql",
"sqlite",
"browser"
],
"license": "MIT"
}