-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
77 lines (77 loc) · 1.42 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
74
75
76
77
{
"name": "p-memoize",
"version": "7.1.1",
"description": "Memoize promise-returning & async functions",
"license": "MIT",
"repository": "sindresorhus/p-memoize",
"funding": "https://github.com/sindresorhus/p-memoize?sponsor=1",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=14.16"
},
"scripts": {
"test": "xo && ava && npm run build && tsd",
"build": "del-cli dist && tsc",
"prepack": "npm run build"
},
"files": [
"dist"
],
"keywords": [
"promise",
"memoize",
"mem",
"memoization",
"function",
"cache",
"caching",
"optimize",
"performance",
"ttl",
"expire",
"async",
"await",
"promises",
"time",
"out",
"cancel",
"bluebird"
],
"dependencies": {
"mimic-fn": "^4.0.0",
"type-fest": "^3.0.0"
},
"devDependencies": {
"@sindresorhus/tsconfig": "^3.0.1",
"@types/serialize-javascript": "^5.0.2",
"ava": "^4.3.3",
"del-cli": "^5.0.0",
"delay": "^5.0.0",
"p-defer": "^4.0.0",
"p-state": "^1.0.0",
"serialize-javascript": "^6.0.0",
"ts-node": "^10.9.1",
"tsd": "^0.24.1",
"xo": "^0.52.4"
},
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"xo": {
"rules": {
"@typescript-eslint/no-redundant-type-constituents": "off"
}
}
}