UNPKG

2.11 kBJSONView Raw
1{
2 "name": "ioredis-mock",
3 "version": "1.11.0",
4 "description": "This library emulates ioredis by performing all operations in-memory.",
5 "main": "./lib",
6 "scripts": {
7 "clean": "rimraf lib",
8 "prepublish": "npm run clean && npm run build",
9 "preversion": "node scripts/update-compat && git add . && git commit --allow-empty -m \"chore(compat): update feature table\"",
10 "build": "mkdirp lib && babel src --out-dir lib",
11 "build:watch": "npm run build -- --watch",
12 "test": "mocha --compilers js:babel-register --recursive",
13 "test:watch": "npm test -- --watch --growl",
14 "lint": "eslint .",
15 "coveralls": "node_modules/.bin/babel-node node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha --report lcovonly -- -R spec --recursive test && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
16 "codeclimate": "codeclimate-test-reporter < ./coverage/lcov.info",
17 "coverage": "npm run coveralls && npm run codeclimate"
18 },
19 "repository": {
20 "type": "git",
21 "url": "git+https://github.com/stipsan/ioredis-mock.git"
22 },
23 "keywords": [
24 "ioredis",
25 "mock-ioredis"
26 ],
27 "author": "Stian Didriksen <stipsan@gmail.com>",
28 "license": "MIT",
29 "bugs": {
30 "url": "https://github.com/stipsan/ioredis-mock/issues"
31 },
32 "tonicExampleFilename": "example.js",
33 "homepage": "https://github.com/stipsan/ioredis-mock#readme",
34 "peerDependencies": {
35 "ioredis": "2.x"
36 },
37 "devDependencies": {
38 "babel-cli": "6.16.0",
39 "babel-eslint": "7.0.0",
40 "babel-preset-es2015": "6.16.0",
41 "babel-register": "6.16.3",
42 "codeclimate-test-reporter": "0.3.3",
43 "coveralls": "2.11.14",
44 "eslint": "3.6.1",
45 "eslint-config-airbnb-base": "8.0.0",
46 "eslint-plugin-import": "2.0.0",
47 "expect": "1.20.2",
48 "growl": "1.9.2",
49 "ioredis": "2.4.0",
50 "istanbul": "1.1.0-alpha.1",
51 "mkdirp": "0.5.1",
52 "mocha": "3.1.0",
53 "rimraf": "2.5.4"
54 },
55 "dependencies": {
56 "bluebird": "3.4.6",
57 "lodash": "4.16.2",
58 "minimatch": "3.0.3",
59 "object-assign": "4.1.0",
60 "redis-commands": "1.2.0"
61 }
62}