-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
73 lines (73 loc) · 2.02 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
{
"name": "secure-store-redis",
"version": "3.0.7",
"description": "A simple wrapper to encrypt and decrypt data stored in Redis",
"license": "MIT",
"private": false,
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"pnpm": ">=9"
},
"keywords": [
"redis",
"secure",
"store",
"encrypt",
"decrypt",
"client",
"database"
],
"author": {
"name": "Nick Jennings",
"email": "[email protected]"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"src/"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"test": "pnpm test:ts && pnpm build && pnpm test:js",
"test:ts": "mocha -r ts-node/register src/*.test.ts",
"test:js": "mocha dist/*.test.js",
"lint": "prettier --check . && eslint --max-warnings 0 .",
"lint:fix": "prettier --write .",
"build": "tsc"
},
"dependencies": {
"redis": "4.7.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.2.0",
"@eslint/js": "^9.18.0",
"@types/chai": "5.0.1",
"@types/debug": "4.1.12",
"@types/eslint": "9.6.1",
"@types/mocha": "10.0.10",
"@types/node": "22.10.9",
"@typescript-eslint/eslint-plugin": "8.21.0",
"@typescript-eslint/parser": "8.21.0",
"chai": "5.1.2",
"debug": "4.4.0",
"eslint": "9.18.0",
"eslint-plugin-security-node": "1.1.4",
"globals": "^15.14.0",
"mocha": "11.1.0",
"prettier": "3.4.2",
"ts-node": "10.9.2",
"typescript": "5.7.3"
},
"repository": {
"type": "git",
"url": "git://github.com/silverbucket/secure-store-redis.git"
},
"readmeFilename": "README.md",
"bugs": {
"url": "https://github.com/silverbucekt/secure-store-redis/issues"
},
"homepage": "https://github.com/silverbucket/secure-store-redis"
}