forked from mcollina/async-cache-dedupe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "async-cache-dedupe",
"version": "1.4.0",
"description": "An async deduping cache",
"main": "index.js",
"scripts": {
"test": "standard | snazzy && tap test/*test.js",
"lint:fix": "standard --fix",
"redis": "docker run --rm -p 6379:6379 redis redis-server"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mcollina/async-cache-dedupe.git"
},
"keywords": [
"cache",
"single",
"user",
"graphql"
],
"author": "Matteo Collina <[email protected]>",
"contributors": [
{
"name": "Simone Sanfratello",
"url": "https://github.com/simone-sanfratello",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"ioredis": "^5.0.1",
"proxyquire": "^2.1.3",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.2.0"
},
"dependencies": {
"abstract-logging": "^2.0.1",
"mnemonist": "^0.39.0",
"safe-stable-stringify": "^2.2.0"
},
"standard": {
"ignore": [
"examples/basic.mjs"
]
}
}