forked from erikolson186/zangodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.27 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
{
"name": "@webantic/zangodb",
"version": "1.1.7",
"description": "MongoDB-like interface for HTML5 IndexedDB",
"main": "./build/src/index.js",
"typings": "./src/zangodb.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --reporter spec build/test/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erikolson186/zangodb.git"
},
"keywords": [
"database",
"nosql",
"browser",
"html5",
"indexeddb",
"mongodb",
"mongo"
],
"author": "Erik Olson <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erikolson186/zangodb/issues"
},
"homepage": "https://github.com/erikolson186/zangodb#readme",
"dependencies": {
"clone": "^2.1.1",
"deepmerge": "^2.0.0",
"memoizee": "^0.4.5",
"object-hash": "^1.1.8",
"q": "^1.5.0"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"browserify": "^14.4.0",
"chai": "^4.0.2",
"fake-indexeddb": "^2.0.3",
"gulp": "^3.9.1",
"gulp-babel": "^7.0.0",
"gulp-sourcemaps": "^2.6.0",
"gulp-uglify": "^3.0.0",
"mocha": "^4.0.1",
"run-sequence": "^2.1.0",
"vinyl-buffer": "^1.0.0",
"vinyl-source-stream": "^1.1.0"
}
}