-
-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
73 lines (73 loc) · 1.88 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
71
72
73
{
"name": "async-cache-dedupe",
"version": "2.2.0",
"description": "An async deduping cache",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "standard | snazzy && c8 --100 node --test test/*test.js && tsd",
"test:types": "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 <[email protected]>",
"contributors": [
{
"name": "Simone Sanfratello",
"url": "https://github.com/simone-sanfratello",
"email": "[email protected]"
}
],
"license": "MIT",
"devDependencies": {
"@fastify/pre-commit": "^2.0.2",
"@matteo.collina/tspl": "^0.1.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-inject": "^5.0.5",
"@rollup/plugin-node-resolve": "^15.2.3",
"browserify": "^17.0.0",
"buffer": "^6.0.3",
"c8": "^10.1.2",
"esbuild": "^0.24.0",
"esbuild-plugin-alias": "^0.2.1",
"events": "^3.3.0",
"ioredis": "^5.3.2",
"path-browserify": "^1.0.1",
"playwright": "^1.40.1",
"process": "^0.11.10",
"proxyquire": "^2.1.3",
"rollup": "^4.9.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"snazzy": "^9.0.0",
"standard": "^17.1.0",
"stream-browserify": "^3.0.0",
"tap-mocha-reporter": "^5.0.4",
"tap-parser": "^18.0.0",
"tape": "^5.7.2",
"tsd": "^0.31.0",
"vite": "^6.0.6",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4",
"wrangler": "^3.28.1"
},
"dependencies": {
"mnemonist": "^0.39.5",
"safe-stable-stringify": "^2.4.3"
},
"standard": {
"ignore": [
"examples/basic.mjs"
]
}
}