-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
59 lines (59 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
55
56
57
58
59
{
"name": "keyv-sqlite-shrink",
"version": "1.2.10",
"description": "SQLite storage adapter for Keyv - supports cleanup/shrinking",
"main": "src/index.js",
"scripts": {
"test": "xo && nyc ava",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"xo": {
"extends": "xo-lukechilds"
},
"ava": {
"require": [
"requirable"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/MySidesTheyAreGone/keyv-sqlite.git"
},
"keywords": [
"sqlite",
"sql",
"keyv",
"storage",
"adapter",
"key",
"value",
"store",
"cache",
"ttl",
"shrink",
"cleanup"
],
"author": "MySidesTheyAreGone <mysidestheyaregone@protonmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MySidesTheyAreGone/keyv-sqlite/issues"
},
"homepage": "https://github.com/MySidesTheyAreGone/keyv-sqlite",
"dependencies": {
"keyv-sql-shrink": "1.1.2",
"pify": "3.0.0",
"sqlite3": "3.1.11"
},
"devDependencies": {
"ava": "^0.22.0",
"coveralls": "^2.13.1",
"eslint-config-xo-lukechilds": "^1.0.0",
"keyv": "*",
"@keyv/test-suite": "*",
"nyc": "^11.0.3",
"requirable": "^1.0.1",
"this": "^1.0.2",
"xo": "^0.19.0",
"@keyv/sqlite": "*"
}
}