forked from mcollina/async-cache-dedupe
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
{
"name": "async-cache-dedupe",
"version": "1.11.0",
"description": "An async deduping cache",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard | snazzy && tap test/*test.js && tsd",
"test:browser": "node test/browser/helpers/runner-browser.mjs",
"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 <hello@matteocollina.com>",
"contributors": [
{
"name": "Simone Sanfratello",
"url": "https://github.com/simone-sanfratello",
"email": "simone.sanfra@gmail.com"
}
],
"license": "MIT",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@rollup/plugin-commonjs": "^24.0.1",
"@rollup/plugin-inject": "^5.0.3",
"@rollup/plugin-node-resolve": "^15.0.1",
"browserify": "^17.0.0",
"buffer": "^6.0.3",
"esbuild": "^0.17.4",
"esbuild-plugin-alias": "^0.2.1",
"events": "^3.3.0",
"ioredis": "^5.2.3",
"path-browserify": "^1.0.1",
"playwright": "^1.29.2",
"process": "^0.11.10",
"proxyquire": "^2.1.3",
"rollup": "^3.11.0",
"rollup-plugin-polyfill-node": "^0.12.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"stream-browserify": "^3.0.0",
"tap": "^16.3.0",
"tap-mocha-reporter": "^5.0.3",
"tap-parser": "^12.0.1",
"tape": "^5.6.3",
"tsd": "^0.26.1",
"vite": "^4.0.4",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"dependencies": {
"mnemonist": "^0.39.2",
"safe-stable-stringify": "^2.3.1"
},
"standard": {
"ignore": [
"examples/basic.mjs"
]
}
}