forked from stipsan/ioredis-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
124 lines (124 loc) · 3.2 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
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "@datacamp/ioredis-mock",
"description": "This library emulates ioredis by performing all operations in-memory.",
"license": "MIT",
"author": "Cody Olsen <stipsan@gmail.com>",
"homepage": "https://github.com/stipsan/ioredis-mock#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stipsan/ioredis-mock.git"
},
"bugs": {
"url": "https://github.com/stipsan/ioredis-mock/issues"
},
"version": "4.15.0",
"main": "./lib",
"files": [
"example.js",
"lib/"
],
"scripts": {
"codeclimate": "codeclimate-test-reporter < ./coverage/lcov.info",
"precoverage": "npx rimraf coverage && npx mkdirp coverage && yarn test",
"coverage": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint .",
"prepublishOnly": "npx rimraf lib && npx mkdirp lib && babel src --out-dir lib",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "nyc mocha --require @babel/register --recursive",
"update-compat": "node scripts/update-compat && git add compat.md README.md && git commit --quiet -m \"docs: Update feature compat table\" &> /dev/null || true"
},
"dependencies": {
"array-from": "^2.1.1",
"es6-map": "^0.1.5",
"es6-set": "^0.1.5",
"fengari": "^0.1.4",
"fengari-interop": "^0.1.2",
"lodash": "^4.17.15",
"minimatch": "^3.0.4",
"object-assign": "^4.1.1",
"standard-as-callback": "^2.0.1"
},
"peerDependencies": {
"ioredis": "4.x"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"@babel/register": "^7.9.0",
"babel-eslint": "^10.1.0",
"bluebird": "^3.7.2",
"chance": "^1.1.4",
"codeclimate-test-reporter": "^0.5.1",
"coveralls": "^3.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"expect": "^1.20.2",
"husky": "^3.1.0",
"ioredis": "^4.16.3",
"lint-staged": "^9.5.0",
"mocha": "^6.2.2",
"mocha-lcov-reporter": "^1.3.0",
"nyc": "^15.0.1",
"prettier": "^1.19.1",
"prettier-package-json": "^2.1.3",
"redis-commands": "^1.5.0",
"stream-mock": "^2.0.5"
},
"keywords": [
"fakeredis",
"in-memory",
"ioredis",
"ioredis-mock",
"mock-ioredis",
"mock-redis",
"redis",
"redis fake",
"redis inmemory",
"redis js",
"redis memory",
"redis mock",
"redis standalone",
"redis test",
"redis testing",
"redis-js",
"redis-mock",
"redisjs"
],
"engines": {
"node": ">=0.10.16"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"prettier --write",
"git add"
],
"*.json": [
"prettier --write",
"git add"
],
"*.md": [
"prettier --write",
"git add"
],
"package.json": [
"prettier-package-json --write",
"git add"
]
},
"release": {
"prepare": [
"@semantic-release/npm"
]
},
"runkitExampleFilename": "example.js"
}