This repository has been archived by the owner on May 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 1.81 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "@egomobile/redis",
"version": "3.0.0",
"description": "Redis classes and utilities for Node.js 18 or later.",
"main": "lib/index.js",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "del ./lib && tsc",
"docs:generate": "del ./docs && typedoc --out ./docs ./src",
"lint": "eslint -c .eslintrc.js --ext .ts src",
"lint:fix": "eslint --fix -c .eslintrc.js --ext .ts src",
"sandbox": "nodemon --watch './sandbox/index.ts' --exec node -r ts-node/register --inspect=0.0.0.0:9229 ./sandbox/index.ts",
"test": "jest --no-cache"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"testMatch": [
"**/__tests__/**/*.ts"
],
"setupFilesAfterEnv": [
"./src/setupTests.ts"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/egomobile/node-redis.git"
},
"keywords": [
"redis",
"cache",
"node",
"nodejs",
"ego"
],
"author": "Next.e.GO Mobile SE, Aachen, Germany",
"license": "LGPL-3.0",
"files": [
"CHANGELOG.md",
"LICENSE",
"lib",
"!lib/**/__tests__/**/*",
"!lib/**/*.map",
"!lib/**/setupTests.*",
"README.md"
],
"dependencies": {
"@types/node": "18.18.5",
"redis": "4.6.11"
},
"devDependencies": {
"@egomobile/tsconfig": "^5.0.0",
"@types/jest": "29.5.11",
"babel-jest": "29.7.0",
"del-cli": "5.1.0",
"eslint": "8.55.0",
"eslint-config-ego": "^0.19.0",
"jest": "29.7.0",
"nodemon": "3.0.2",
"ts-jest": "29.1.1",
"ts-node": "10.9.1",
"typedoc": "0.25.4",
"typescript": "4.7.4"
}
}