-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 960 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": "@khalidsheet/cacheable",
"version": "0.5.1",
"description": "A simple in-memory caching solution for Node.js, with a flexible design where you can define your own cache policies.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"private": false,
"scripts": {
"start": "node index.js",
"test": "jest",
"build": "tsup",
"watch": "tsc -w"
},
"keywords": [
"cache",
"cacheable",
"nodejs",
"node-cacheable",
"node-cache",
"node",
"extendable",
"express",
"express-cache",
"expressjs"
],
"homepage": "https://github.com/khalidsheet/cacheable",
"author": {
"name": "Khalid Sheet",
"email": "[email protected]"
},
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.14",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"typescript": "^5.6.3"
}
}