-
-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
149 lines (149 loc) · 3.71 KB
/
package.json
File metadata and controls
149 lines (149 loc) · 3.71 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
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
{
"name": "@adonisjs/redis",
"description": "AdonisJS addon for Redis",
"version": "10.0.0",
"type": "module",
"main": "build/index.js",
"files": [
"build",
"!build/bin",
"!build/tests",
"!build/tests_helpers"
],
"engines": {
"node": ">=24.0.0"
},
"exports": {
".": "./build/index.js",
"./services/main": "./build/services/main.js",
"./redis_provider": "./build/providers/redis_provider.js",
"./factories": "./build/factories/main.js",
"./types": "./build/src/types.js"
},
"scripts": {
"pretest": "npm run lint",
"test": "cross-env NODE_DEBUG=adonisjs:http npm run quick:test",
"typecheck": "tsc --noEmit",
"precompile": "npm run lint",
"compile": "tsdown && tsc --emitDeclarationOnly --declaration",
"build": "npm run compile",
"prebenchmark": "npm run build",
"benchmark": "node benchmarks/index.js",
"release": "release-it",
"version": "npm run build",
"format": "prettier --write .",
"prepublishOnly": "npm run build",
"lint": "eslint",
"quick:test": "node --import=@poppinss/ts-exec --enable-source-maps bin/test.ts",
"docs": "typedoc",
"copy:templates": "copyfiles --up 1 \"stubs/**/**/*.stub\" build",
"postcompile": "npm run copy:templates"
},
"devDependencies": {
"@adonisjs/assembler": "^8.0.0",
"@adonisjs/core": "^7.0.0",
"@adonisjs/eslint-config": "^3.0.0",
"@adonisjs/prettier-config": "^1.4.5",
"@adonisjs/tsconfig": "^2.0.0",
"@japa/assert": "^4.2.0",
"@japa/expect-type": "^2.0.4",
"@japa/file-system": "^3.0.0",
"@japa/runner": "^5.3.0",
"@poppinss/ts-exec": "^1.4.4",
"@release-it/conventional-changelog": "^10.0.5",
"@types/node": "~25.3.0",
"c8": "^11.0.0",
"copyfiles": "^2.4.1",
"cross-env": "^10.1.0",
"del-cli": "^7.0.0",
"dotenv": "^17.3.1",
"eslint": "^10.0.2",
"prettier": "^3.8.1",
"release-it": "^19.2.4",
"tsdown": "^0.20.3",
"typescript": "^5.9.3"
},
"dependencies": {
"@poppinss/utils": "^7.0.0",
"emittery": "^1.2.0",
"ioredis": "^5.9.3"
},
"peerDependencies": {
"@adonisjs/core": "^7.0.0-next.0 || ^7.0.0"
},
"keywords": [
"redis",
"ioredis"
],
"author": "Harminder Virk <virk@adonisjs.com>",
"contributors": [
"Romain Lanz <romain.lanz@pm.me>",
"Julien Ripouteau <julien@ripouteau.com>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/redis.git"
},
"bugs": {
"url": "https://github.com/adonisjs/redis/issues"
},
"homepage": "https://github.com/adonisjs/redis#readme",
"publishConfig": {
"access": "public",
"provenance": true
},
"release-it": {
"git": {
"requireCleanWorkingDir": true,
"requireUpstream": true,
"commitMessage": "chore(release): ${version}",
"tagAnnotation": "v${version}",
"push": true,
"tagName": "v${version}"
},
"github": {
"release": true
},
"npm": {
"publish": true,
"skipChecks": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": {
"name": "angular"
}
}
}
},
"c8": {
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**",
"src/repl_bindings.ts"
]
},
"tsdown": {
"entry": [
"./index.ts",
"./src/types.ts",
"./services/main.ts",
"./providers/redis_provider.ts",
"./factories/main.ts"
],
"outDir": "./build",
"clean": true,
"format": "esm",
"minify": "dce-only",
"fixedExtension": false,
"dts": false,
"treeshake": false,
"sourcemaps": false,
"target": "esnext"
},
"prettier": "@adonisjs/prettier-config"
}