-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 958 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
39
40
41
{
"name": "@tuizi/file-cache",
"version": "0.2.0",
"description": "A simple file cache system for Node.js. The cache is stored in memory and on the filesystem, allowing for fast access and persistence between runs.",
"main": "dist/index.js",
"engines": {
"node": ">=19.2.0"
},
"scripts": {
"test": "jest",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Tuizi/filecache.git"
},
"author": "Tuizi",
"bugs": {
"url": "https://github.com/Tuizi/filecache/issues"
},
"homepage": "https://github.com/Tuizi/filecache#readme",
"keywords": [
"file cache",
"in-memory cache",
"persistent cache",
"Node.js cache",
"cache",
"storage"
],
"license": "MIT",
"devDependencies": {
"@types/jest": "29.2.5",
"@types/node": "18.11.18",
"jest": "29.3.1",
"ts-jest": "29.0.3",
"typescript": "4.9.4"
},
"jest": {
"preset": "ts-jest"
}
}