forked from StephenMP/ts-ioredis-pool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.49 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
{
"name": "@dailydotdev/ts-ioredis-pool",
"author": {
"name": "StephenMP",
"url": "https://stephenmp.github.io/"
},
"description": "An ioredis connection pooling client written in TypeScript",
"version": "1.0.2",
"main": "dist/index.js",
"module": "dist/index.es5.js",
"typings": "dist/types/index.d.ts",
"license": "MIT",
"private": false,
"bugs": "https://github.com/StephenMP/ts-ioredis-pool/issues",
"homepage": "https://github.com/StephenMP/ts-ioredis-pool",
"repository": {
"type": "git",
"url": "https://github.com/StephenMP/ts-ioredis-pool"
},
"keywords": [
"redis",
"ioredis",
"redis-client",
"ioredis-client",
"redis-pool",
"ioredis-pool",
"ts-ioredis-pool",
"redis-connection-pool",
"ioredis-connection-pool",
"st-ioredis-connection-pool"
],
"files": [
"dist"
],
"scripts": {
"build": "rm -rf dist && tsc -p tsconfig.json && ncc build --quiet --minify",
"test": "jest"
},
"prettier": {
"printWidth": 120,
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": true
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/generic-pool": "^3.1.10",
"@types/ioredis": "^4.28.10",
"@types/jest": "^27.0.2",
"@vercel/ncc": "^0.31.1",
"dotenv": "^10.0.0",
"jest": "^27.3.1",
"ts-jest": "^27.0.7",
"typescript": "^4.4.4"
},
"dependencies": {
"events": "^3.3.0",
"generic-pool": "^3.8.2",
"ioredis": "^5.0.5"
}
}