-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 828 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 828 Bytes
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
{
"name": "throttle-async-function",
"version": "1.2.0",
"description": "Cache results of async functions for further calls",
"main": "src/main.js",
"scripts": {
"test": "jest --watch --bail"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mkls/throttle-async-function.git"
},
"keywords": [
"throttle",
"memoize",
"cache",
"retry"
],
"author": "mkls",
"license": "ISC",
"bugs": {
"url": "https://github.com/mkls/throttle-async-function/issues"
},
"homepage": "https://github.com/mkls/throttle-async-function#readme",
"devDependencies": {
"@sinonjs/fake-timers": "^6.0.1",
"@types/jest": "^25.1.3",
"delay": "^4.3.0",
"jest": "^25.1.0"
},
"dependencies": {
"json-stable-stringify": "^1.0.1",
"lru-cache": "^5.1.1"
}
}