forked from apitenko/redmock
-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
33 lines (33 loc) · 869 Bytes
/
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
{
"name": "@skewedaspect/redmock",
"version": "1.2.2",
"description": "Mock Redis server for unit testing.",
"license": "MIT",
"author": "Christopher S. Case <chris.case@g33xnexus.com>",
"bugs": "https://github.com/skewedaspect/redmock/issues",
"main": "index.js",
"engines": {
"node": ">= 8.10.0"
},
"repository": {
"type": "git",
"url": "https://github.com/skewedaspect/redmock.git"
},
"scripts": {
"ci": "npm run lint && npm run test",
"lint": "eslint --fix index.js src/*.js",
"test": "mocha -R spec ./test/common.js ./test/unit/**/*.js ./test/functional/**/*.js"
},
"dependencies": {
"debug": "4.1.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^6.3.0",
"ioredis": "4.14.0",
"mocha": "^6.2.0",
"rimraf": "^3.0.0",
"sinon": "7.4.2"
}
}