-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
80 lines (80 loc) · 2.58 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
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "node-redis-connection-pool",
"version": "3.1.0",
"description": "Simplistic node redis connection pool ready can scale with generic-pool support",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pasupulaphani/node-redis-connection-pool.git"
},
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/pasupulaphani/node-redis-connection-pool/issues"
},
"homepage": "https://github.com/pasupulaphani/node-redis-connection-pool#readme",
"directories": {
"test": "test"
},
"author": "pasupulaphani@gmail.com",
"license": "WTFPL",
"keywords": [
"node",
"redis",
"cache",
"store",
"connection",
"pool",
"node-pool",
"generic-pool",
"connection pooling"
],
"scripts": {
"lint": "eslint -c .eslintrc.js --ext .ts src",
"build": "npm run build:clean && tsc",
"build:watch": "tsc --watch",
"build:clean": "rimraf dist",
"test": "jest --runInBand --detectOpenHandles --forceExit --coverage",
"test:watch": "jest --runInBand --detectOpenHandles --forceExit --watch",
"coveralls": "coveralls < coverage/lcov.info",
"docs": "npm run docs:clean && typedoc --readme none --theme minimal --out docs/ src/RedisConnectionPool.ts && touch ./docs/.nojekyll",
"docs:clean": "rimraf docs",
"prepublish": "npm run docs && npm run build",
"publish:push": "git push origin master --follow-tags && npm publish",
"publish:major": "npm version major && npm run publish:push",
"publish:minor": "npm version minor && npm run publish:push",
"publish:patch": "npm version patch && npm run publish:push"
},
"dependencies": {
"debug": "^4.3.1",
"generic-pool": "^3.7.8",
"is-json": "^2.0.1",
"redis": "^3.1.2",
"retry-as-promised": "^3.2.0"
},
"devDependencies": {
"@babel/preset-typescript": "^7.12.13",
"@types/debug": "^4.1.5",
"@types/generic-pool": "^3.1.9",
"@types/jest": "^26.0.20",
"@types/node": "^14.14.25",
"@types/redis": "^2.8.28",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/eslint-plugin-tslint": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"coveralls": "^3.1.0",
"eslint": "^7.19.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-import": "^2.22.1",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"rimraf": "^3.0.2",
"ts-jest": "^26.5.0",
"typedoc": "^0.20.22",
"typescript": "^4.1.3"
}
}