-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.21 KB
/
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
42
43
44
45
46
47
48
49
{
"name": "try-cache",
"description": "An auto-caching npm package for super-fast retrieval of less-consistant data",
"version": "1.0.12",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "tsc && npm run serve",
"serve": "node dist/index.js",
"example": "tsc -p . && node dist/example/example.js",
"build": "tsc",
"prepublish": "tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Shahar-Y/try-cache.git"
},
"keywords": [
"try-cache",
"try",
"cache",
"node",
"redis",
"async",
"performance",
"db",
"database"
],
"author": "Shahar-Y",
"license": "ISC",
"bugs": {
"url": "https://github.com/Shahar-Y/try-cache/issues"
},
"homepage": "https://github.com/Shahar-Y/try-cache#readme",
"dependencies": {
"redis": "^4.0.4"
},
"devDependencies": {
"@types/async-redis": "^1.1.3",
"@types/redis": "^4.0.11",
"@typescript-eslint/eslint-plugin": "^5.13.0",
"@typescript-eslint/parser": "^5.13.0",
"eslint": "^8.10.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.4",
"typescript": "^4.6.2"
}
}