-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
39 lines (39 loc) · 907 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
{
"name": "cachimo",
"description": "Stores key with value in-memory and can be deleted manually or after given timeout.",
"homepage": "https://github.com/svipas/cachimo",
"version": "2.0.4",
"main": "./dist/cachimo.js",
"types": "./dist/cachimo.d.ts",
"author": "svipas",
"repository": {
"type": "git",
"url": "https://github.com/svipben/cachimo.git"
},
"bugs": {
"url": "https://github.com/svipas/cachimo/issues"
},
"license": "MIT",
"scripts": {
"compile": "tsc --declaration -p ./",
"test": "jest",
"prepublishOnly": "yarn compile"
},
"devDependencies": {
"@babel/core": "^7.10.4",
"@babel/preset-env": "^7.10.4",
"@babel/preset-typescript": "^7.10.4",
"@types/jest": "^26.0.4",
"@types/node": "^14.0.18",
"babel-jest": "^26.1.0",
"jest": "^26.1.0",
"typescript": "^3.9.6"
},
"keywords": [
"cache",
"in-memory",
"storage",
"nodejs",
"browser"
]
}