-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
100 lines (100 loc) · 2.9 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "redis-memory-server",
"version": "0.11.0",
"description": "Redis Server for testing. The server will allow you to connect your favorite client library to the Redis Server and run parallel integration tests isolated from each other.",
"bin": "bin/index.js",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mhassan1/redis-memory-server.git"
},
"engines": {
"node": ">=16"
},
"files": [
"lib",
"scripts"
],
"keywords": [
"redis",
"mock",
"stub",
"redis-prebuilt"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/mhassan1/redis-memory-server/issues"
},
"homepage": "https://github.com/mhassan1/redis-memory-server",
"devDependencies": {
"@commitlint/cli": "^17.6.6",
"@commitlint/config-conventional": "^17.6.6",
"@types/cross-spawn": "^6.0.2",
"@types/debug": "^4.1.8",
"@types/find-cache-dir": "^3.2.1",
"@types/find-package-json": "^1.2.3",
"@types/ioredis": "^5.0.0",
"@types/jest": "^29.5.2",
"@types/lockfile": "^1.0.2",
"@types/lodash.defaultsdeep": "^4.6.7",
"@types/node": "^18.11.9",
"@types/rimraf": "^4.0.5",
"@types/semver": "^7.5.0",
"@types/tar": "^6.1.5",
"@types/tmp": "^0.2.3",
"@types/uuid": "^8.3.4",
"@typescript-eslint/eslint-plugin": "^5.61.0",
"@typescript-eslint/parser": "^5.61.0",
"commitlint": "^17.6.6",
"cross-env": "^7.0.3",
"eslint": "^8.44.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"ioredis": "^5.3.2",
"jest": "^29.6.0",
"lint-staged": "^13.2.3",
"prettier": "^2.8.8",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.1",
"typescript": "~5.1.6"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
},
"dependencies": {
"camelcase": "^6.3.0",
"cross-spawn": "^7.0.3",
"debug": "^4.3.4",
"extract-zip": "^2.0.1",
"find-cache-dir": "^3.3.2",
"find-package-json": "^1.2.0",
"get-port": "^5.1.1",
"https-proxy-agent": "^7.0.0",
"lockfile": "^1.0.4",
"lodash.defaultsdeep": "^4.6.1",
"rimraf": "^5.0.1",
"semver": "^7.5.3",
"tar": "^6.1.15",
"tmp": "^0.2.1",
"uuid": "^8.3.2"
},
"scripts": {
"postinstall": "node ./scripts/postinstall",
"clean": "rimraf tmp lib coverage node_modules/.cache",
"build": "rimraf ./lib && tsc -p ./tsconfig.build.json",
"watch": "cross-env REDISMS_DOWNLOAD_DIR=./tmp jest --watchAll",
"coverage": "cross-env REDISMS_DOWNLOAD_DIR=./tmp jest --coverage --runInBand",
"lint": "yarn eslint && yarn tscheck",
"release": "standard-version",
"prepublishOnly": "yarn build",
"eslint": "eslint '**/*.{js,ts}'",
"test": "yarn lint && yarn coverage",
"test:watch": "yarn watch",
"tscheck": "tsc --noEmit"
},
"packageManager": "yarn@4.0.0"
}