-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
62 lines (62 loc) · 1.74 KB
/
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"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.15.0",
"author": "Aaron Powell <[email protected]>",
"contributors": [
"Brett Zamir <[email protected]>"
],
"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"
},
"license": "MIT",
"main": "dist/db.min.js",
"engines": {
"node": ">=0.8"
},
"scripts": {
"test": "./node_modules/.bin/grunt test",
"karma": "./node_modules/.bin/karma",
"grunt": "./node_modules/.bin/grunt"
},
"dependencies": {},
"devDependencies": {
"babel-plugin-transform-es2015-modules-commonjs": "^6.7.0",
"babel-polyfill": "^6.6.1",
"babel-preset-es2015": "^6.0.15",
"body-parser": "1.x",
"chai": "^3.5.0",
"errorhandler": "1.x",
"eslint-config-standard": "^4.4.0",
"eslint-plugin-standard": "^1.3.1",
"express": "^4.13.4",
"grunt": "~0.4.1",
"grunt-babel": "^6.0.0",
"grunt-browserify": "^5.0.0",
"grunt-cli": "^0.1.13",
"grunt-contrib-clean": "~0.4.1",
"grunt-contrib-connect": "^1.0.0",
"grunt-contrib-jade": "~0.5.1",
"grunt-contrib-uglify": "^0.10.0",
"grunt-eslint": "^17.3.1",
"grunt-karma": "^0.12.1",
"grunt-saucelabs": "^8.6.0",
"jade": "^1.11.0",
"jquery": "^2.2.2",
"karma": "^0.13.21",
"karma-mocha": "^0.2.2",
"karma-phantomjs-launcher": "^1.0.0",
"karma-replacer-preprocessor": "0.0.1",
"matchdep": "^1.0.1",
"mocha": "^2.4.5",
"phantomjs-prebuilt": "^2.1.6"
},
"keywords": [
"indexeddb"
]
}