forked from mhassan1/redis-memory-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.01 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 3.01 KB
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
101
102
103
104
105
106
{
"name": "redis-memory-server",
"version": "0.5.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.",
"main": "lib/index",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/mhassan1/redis-memory-server.git"
},
"engines": {
"node": ">=10.15.0"
},
"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": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"@types/cross-spawn": "^6.0.2",
"@types/debug": "^4.1.5",
"@types/find-cache-dir": "^3.2.0",
"@types/find-package-json": "^1.1.1",
"@types/ioredis": "^4.19.3",
"@types/jest": "26.0.14",
"@types/lockfile": "^1.0.1",
"@types/lodash.defaultsdeep": "^4.6.6",
"@types/mkdirp": "^1.0.1",
"@types/node": "^14.11.2",
"@types/rimraf": "^3.0.0",
"@types/semver": "7.3.4",
"@types/tar": "^4.0.4",
"@types/tmp": "^0.2.0",
"@types/uuid": "^8.0.0",
"@typescript-eslint/eslint-plugin": "^4.15.0",
"@typescript-eslint/parser": "^4.15.0",
"commitlint": "11.0.0",
"cross-env": "^7.0.3",
"eslint": "^7.19.0",
"eslint-config-prettier": "6.12.0",
"eslint-plugin-prettier": "3.1.4",
"husky": "^4.3.0",
"ioredis": "^4.22.0",
"jest": "^26.6.3",
"lint-staged": "10.4.0",
"prettier": "2.1.2",
"standard-version": "^9.1.0",
"ts-jest": "26.4.1",
"typescript": "^4.1.4"
},
"lint-staged": {
"**/*.{ts,tsx,js,jsx}": [
"eslint --fix"
]
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"dependencies": {
"camelcase": "^6.0.0",
"cross-spawn": "^7.0.3",
"debug": "^4.2.0",
"extract-zip": "^2.0.1",
"find-cache-dir": "^3.3.1",
"find-package-json": "^1.2.0",
"get-port": "^5.1.1",
"https-proxy-agent": "^5.0.0",
"lockfile": "^1.0.4",
"lodash.defaultsdeep": "^4.6.1",
"mkdirp": "^1.0.4",
"rimraf": "^3.0.2",
"semver": "^7.3.2",
"tar": "^6.1.0",
"tmp": "^0.2.1",
"uuid": "8.3.0"
},
"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"
}
}