-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.08 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
{
"name": "redite",
"version": "4.0.0",
"description": "A wrapper for Redis using proxies to emulate regular objects.",
"main": "index.js",
"types": "redite.d.ts",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "jest -i",
"coverage": "jest -i --coverage",
"lint": "eslint . --fix"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Ovyerus/redite.git"
},
"keywords": [
"redite",
"redis",
"database",
"es6",
"proxies",
"proxy"
],
"author": "Ovyerus",
"license": "MIT",
"bugs": {
"url": "https://github.com/Ovyerus/redite/issues"
},
"homepage": "https://github.com/Ovyerus/redite#readme",
"devDependencies": {
"@types/ioredis": "^5.0.0",
"eslint": "^8.34.0",
"eslint-config-clarity": "^1.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jest": "^29.4.2",
"jest-extended": "^3.2.3",
"prettier": "^2.8.4"
},
"dependencies": {
"ioredis": "^5.3.1"
}
}