-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 938 Bytes
/
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
{
"name": "@skywardapps/async-lru-cache",
"version": "1.0.0",
"description": "A caching library for handling async functions without storing errors",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": ["dist/**/*"],
"scripts": {
"build": "tsc",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SkywardApps/async-lru-cache.git"
},
"keywords": [
"memoize",
"cache",
"async",
"lru",
"caching"
],
"author": "Skyward App Company",
"license": "ISC",
"bugs": {
"url": "https://github.com/SkywardApps/async-lru-cache/issues"
},
"homepage": "https://github.com/SkywardApps/async-lru-cache#readme",
"dependencies": {
"jest": "^27.3.1",
"lru-cache": "^6.0.0",
"typescript": "^4.4.4"
},
"devDependencies": {
"@types/jest": "^27.0.2",
"@types/lru-cache": "^5.1.1"
}
}