forked from aaronpowell/db.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 926 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
38
39
{
"name": "db.js",
"description": "db.js is a wrapper for IndexedDB to make it easier to work against, making it look more like a queryable API.",
"version": "0.0.1",
"homepage": "http://aaronpowell.github.com/db.js/",
"repository": {
"type": "git",
"url": "https://github.com/aaronpowell/db.js"
},
"bugs": {
"url": "https://github.com/aaronpowell/db.js/issues"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/aaronpowell/db.js/blob/master/LICENSE.md"
}
],
"main": "src/db.js",
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "grunt test"
},
"devDependencies": {
"grunt": "~0.4.1",
"grunt-contrib-jade": "~0.5.1",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-connect": "~0.3.0",
"grunt-saucelabs": "~4.0.2",
"matchdep": "~0.1.2",
"express": "*",
"jade": "*"
},
"keywords": [
"indexeddb"
]
}