-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 993 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 993 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
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"name": "cache-memory",
"version": "3.0.3",
"repository": {
"type": "git",
"url": "git://github.com/croweman/node-in-memory-cache.git"
},
"description": "Node module for in memory caching",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublish": "npm run build",
"build": "tsc",
"test": "npm run build && jest --detectOpenHandles"
},
"contributors": [
{
"name": "Lee Crowe",
"email": "leecrowe81@googlemail.co.uk"
}
],
"dependencies": {
"clone": "^2.1.2",
"debug": "^4.3.4"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/clone": "^2.1.1",
"@types/jest": "^29.4.0",
"chai": "^4.3.7",
"jest": "^29.4.3",
"tslib": "^2.4.1",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"keywords": [
"memory",
"cache",
"node",
"in-memory",
"inmemory",
"ram",
"simple",
"storage"
],
"author": "Lee Crowe",
"license": "MIT"
}