UNPKG

redis-js

Version:

An in-memory redis-compatible implementation written in pure javascript. Part of the [Rarefied Redis Project](http://wilkenstein.github.io/rarefied-redis/).

77 lines (76 loc) 2.83 kB
{ "name": "redis-js", "author": "Brian Wilke <wilke.brian@gmail.com>", "repository": { "type": "git", "url": "git://github.com/wilkenstein/redis-mock-js.git" }, "main": "redis-mock.js", "version": "0.1.2", "devDependencies": { "jshint": "2.3.0", "q": "~1.0", "mocha": "1.13.0", "chai": "~2.1", "karma": "~0.12", "karma-chai": "^0.1.0", "karma-firefox-launcher": "~0.1", "karma-chrome-launcher": "~0.1", "karma-ie-launcher": "~0.1", "karma-safari-launcher": "~0.1", "karma-opera-launcher": "~0.1", "karma-mocha": "^0.1.10", "istanbul": "0.3.5", "complexity-report": "1.0.2", "node-jsmeter": "0.1.2", "plato": "0.6.2", "uglify-js": "2.4.x", "docco": "*", "redis": "~0.12" }, "scripts": { "pretest": "node_modules/.bin/jshint redis-mock.js", "test": "node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -R spec -t 60s -s 5s test/mocha", "posttest": "node_modules/.bin/plato -d plato/ redis-mock.js", "test-phantomjs": "npm i karma-phantomjs-launcher && ./node_modules/karma/bin/karma start", "test-firefox": "./node_modules/karma/bin/karma start --browsers Firefox", "test-chrome": "./node_modules/karma/bin/karma start --browsers Chrome", "test-ie": "./node_modules/karma/bin/karma start --browsers IE", "test-safari": "./node_modules/karma/bin/karma start --browsers Safari", "test-opera": "./node_modules/karma/bin/karma start --browsers Opera", "implemented": "./node_modules/.bin/_mocha -R spec -t 60s test/implemented.js", "unimplemented": "./node_modules/.bin/_mocha -R spec -t 60s test/unimplemented.js", "build-min": "node_modules/.bin/uglifyjs redis-mock.js --source-map redis-mock-min.map -o redis-mock-min.js", "pretest-min": "mv redis-mock.js redis-mock.js.bkp && cp redis-mock-min.js redis-mock.js", "test-min": "./node_modules/.bin/_mocha -R spec -t 60s -s 5s test/mocha", "posttest-min": "mv redis-mock.js.bkp redis-mock.js", "load-test": "./node_modules/.bin/_mocha -R spec -t 60s test/load", "doc": "docco redis-mock.js" }, "license": "MIT", "files": [ "redis-mock.js", "redis-mock-min.js", "redis-mock-min.map", "LICENSE" ], "keywords": [ "redis", "mock", "mock-redis", "redis mock", "redis testing", "redis test", "test redis", "in-memory", "redis in-memory", "redis fake", "redis-js", "redis js", "redisjs", "redis standalone", "cache", "redis cache", "in-memory cache" ] }