-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.22 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
{
"name": "keyv-pouchdb",
"version": "0.1.0-alpha.2",
"description": "PouchDB storage adapter for Keyv",
"main": "src/index.js",
"scripts": {
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"xo": {
"extends": "xo-wmik"
},
"ava": {
"require": [
"requirable"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/wmik/keyv-pouchdb.git"
},
"keywords": [
"pouchdb",
"pouchdb-browser",
"keyv",
"storage",
"adapter",
"key",
"value",
"store",
"ttl",
"cache"
],
"author": "wmik <contact@wmik.me>",
"license": "MIT",
"bugs": {
"url": "https://github.com/wmik/keyv-pouchdb/issues"
},
"dependencies": {
"lodash.merge": "^4.6.1",
"pouchdb-browser": "^6.4.3",
"pouchdb-lru-cache": "^1.1.4"
},
"devDependencies": {
"@keyv/test-suite": "^1.6.11",
"ava": "^0.25.0",
"coveralls": "^3.0.1",
"eslint-config-xo-wmik": "0.0.0",
"keyv": "^3.0.0",
"nyc": "^12.0.2",
"pouchdb-adapter-http": "^7.0.0",
"pouchdb-adapter-memory": "^7.0.0",
"pouchdb-adapter-node-websql": "^7.0.0",
"requirable": "^1.0.5",
"this": "^1.0.2",
"xo": "^0.21.1"
}
}