-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 KB
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
{
"name": "@dharmendrasha/function_cache",
"version": "1.0.3",
"description": "Manages and records the outgoing records from nodejs application.",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"scripts": {
"prebuild": "rimraf lib",
"build": "npm run prebuild && tsc",
"test": "jest",
"prepublish": "npm run prebuild && npm run build"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"repository": {
"url": "https://github.com/dharmendrasha/function_cache.git",
"type": "git"
},
"keywords": [
"node",
"cache",
"function",
"node-cache",
"function_cache",
"typescript",
"optimization",
"ttl"
],
"author": {
"name": "Dharmendra Shah",
"url": "https://github.com/dharmendrasha",
"email": "dharmendrashaheagle@gmail.com"
},
"license": "MIT",
"devDependencies": {
"@jest/globals": "^29.6.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.3",
"axios": "^1.4.0",
"jest": "^29.6.1",
"jest-junit": "^16.0.0",
"rimraf": "^5.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"node-cache": "^5.1.2",
"reflect-metadata": "^0.1.13"
}
}