-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.36 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
{
"name": "keyv-replitdb",
"version": "0.0.0",
"description": "Repl.it Database storage adapter for Keyv",
"keywords": [
"replit",
"keyv",
"storage",
"adapter",
"key",
"value",
"store",
"cache"
],
"homepage": "https://github.com/vladimyr/keyv-replitdb",
"bugs": {
"url": "https://github.com/vladimyr/keyv-replitdb/issues"
},
"repository": {
"type": "git",
"url": "git://github.com/vladimyr/keyv-replitdb.git"
},
"license": "MIT",
"author": {
"name": "Dario Vladovic",
"email": "d.vladimyr+dev@gmail.com",
"url": "https://github.com/vladimyr"
},
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"dev-api": "micro dev-api.js",
"lint": "eslint .",
"test": "ava"
},
"config": {
"replitUrl": "https://keyv-replitdb.vladimyr1.repl.co"
},
"dependencies": {
"node-fetch": "^2.6.1",
"p-catch-if": "^2.1.0",
"p-map": "^4.0.0"
},
"devDependencies": {
"@keyv/test-suite": "^1.6.11",
"@vladimyr/eslint-config": "*",
"ava": "^3.15.0",
"dotenv": "^8.2.0",
"eslint": "^6.6.0",
"eslint-config-semistandard": "^15.0.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"micro": "^9.3.4"
}
}