-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.27 KB
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
{
"name": "mikro-orm-cache-adapter-redis",
"version": "4.0.1",
"description": "A redis cache adapter for mikro-orm",
"main": "dist/index.cjs.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/ramiel/mikro-orm-cache-adapter-redis",
"author": "Fabrizio Ruggeri",
"license": "MIT",
"scripts": {
"prepare": "npm run build",
"build": "rollup -c --environment NODE_ENV:production",
"build-watch": "rollup -c --environment NODE_ENV:production -w --no-watch.clearScreen",
"lint": "eslint .",
"test": "vitest run --coverage",
"test:services:start": "docker compose -f docker-compose.yaml up -d",
"test:services:stop": "docker compose -f docker-compose.yaml down"
},
"devDependencies": {
"@mikro-orm/core": "^5.0.5",
"@typescript-eslint/eslint-plugin": "^5.15.0",
"@typescript-eslint/parser": "^5.15.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"ioredis": "^5.3.2",
"prettier": "2.6.0",
"rollup": "^2.42.4",
"rollup-plugin-typescript2": "0.31.0",
"typescript": "^4.1.3",
"vitest": "^2.0.5"
},
"peerDependencies": {
"ioredis": "^5.3.2"
},
"files": [
"dist"
]
}