-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.05 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
{
"name": "@selfagency/asyncredis",
"version": "0.1.0",
"description": "",
"main": "cache.js",
"repository": {
"type": "git",
"url": "git+https://github.com/selfagency/asyncredis.git"
},
"keywords": [
"redis",
"async",
"asynchronus",
"await",
"cache",
"typescript"
],
"author": "Daniel Sieradski <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/selfagency/asyncredis/issues"
},
"homepage": "https://github.com/selfagency/asyncredis#readme",
"scripts": {
"build": "tsc; cp package.json dist/package.json"
},
"devDependencies": {
"@tsconfig/node18": "^1.0.1",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"eslint": "^8.28.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.8.0",
"tsconfig-paths": "^4.1.0",
"typescript": "^4.9.3"
},
"dependencies": {
"ioredis": "^5.2.4"
}
}