-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.59 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
{
"name": "@verdigris/nitrous-driver-redis",
"version": "3.0.0",
"description": "Redis driver for nitrous.js",
"author": "Andrew Jo <andrew@verdigris.co> (https://verdigris.co)",
"license": "BSD-3-Clause",
"main": "dist/index.js",
"scripts": {
"test": "mocha",
"coverage": "nyc mocha",
"lint": "eslint --ext .ts .",
"format": "prettier src/**/*.ts --write",
"build": "tsc -b src/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/VerdigrisTech/nitrous-driver-redis.git"
},
"bugs": {
"url": "https://github.com/VerdigrisTech/nitrous-driver-redis/labels/bug"
},
"homepage": "https://github.com/VerdigrisTech/nitrous-driver-redis#readme",
"engines": {
"node": ">=18.0.0"
},
"peerDependencies": {
"@verdigris/nitrous": "^2.2.0"
},
"dependencies": {
"ioredis": "^5.0.0"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^18.19.67",
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@verdigris/nitrous": "^2.2.0",
"chai": "^4.2.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"husky": "^4.2.5",
"lint-staged": "^10.2.13",
"mocha": "^8.1.2",
"nyc": "^15.1.0",
"prettier": "^2.1.0",
"ts-node": "^9.0.0",
"tsconfig-paths": "^3.9.0",
"typescript": "^5.0.0"
},
"keywords": [
"node",
"cache",
"caching",
"framework",
"redis",
"typescript"
],
"types": "dist/index.d.ts",
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}