-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
34 lines (34 loc) · 999 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
{
"name": "indexeddb-js",
"description": "A pure javascript stop-gap implementation of the IndexedDB (aka. Indexed Database) API using sqlite3 as a storage engine.",
"version": "0.0.14",
"main": "src/indexeddb-js.js",
"author": "metagriffin <mg.npmjs@uberdev.org>",
"contributors": ["Brett Zamir <brettz9@yahoo.com>"],
"homepage": "https://github.com/metagriffin/indexeddb-js",
"licenses": [{
"type": "MIT",
"url": "http://opensource.org/licenses/MIT"
}],
"repository": {
"type": "git",
"url": "git://github.com/metagriffin/indexeddb-js.git"
},
"bugs": {
"url": "https://github.com/metagriffin/indexeddb-js/issues"
},
"dependencies": {
"amdefine": ">=0.0.4",
"sqlite3": ">=2.1.1",
"underscore": ">=1.4.2"
},
"devDependencies": {
"jasmine-node": ">=1.0.26"
},
"keywords": [
"indexeddb",
"javascript",
"sqlite3",
"unit testing"
]
}