-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
43 lines (43 loc) · 1.04 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
{
"name": "keyv-firestore",
"description": "Firebase Cloud Firestore backend for Keyv, the simple persistent key-value storage module",
"version": "2.1.0",
"author": "Renée Kooi <renee@kooi.me>",
"bugs": {
"url": "https://github.com/goto-bus-stop/keyv-firestore/issues"
},
"devDependencies": {
"@keyv/test-suite": "^1.6.11",
"ava": "^5.2.0",
"standard": "^17.0.0"
},
"homepage": "https://github.com/goto-bus-stop/keyv-firestore",
"keywords": [
"cloud-firestore",
"firebase",
"firestore",
"key-value",
"keyv",
"persistence",
"storage"
],
"license": "Apache-2.0",
"main": "index.js",
"types": "index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/goto-bus-stop/keyv-firestore.git"
},
"scripts": {
"test:ava": "ava test.js",
"test:vitest": "vitest run",
"test:lint": "standard",
"test": "standard && ava"
},
"peerDependencies": {
"keyv": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"dependencies": {
"@google-cloud/firestore": "^6.5.0"
}
}