dwyl/learn-redis

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "learn-redis",
  "version": "2.6.2",
  "description": "A quick introduction to using Redis to store/retrieve data for your node.js app!",
  "main": "server.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/nelsonic/learn-redis.git"
  },
  "keywords": [
    "redis",
    "node.js",
    "node",
    "tutorial",
    "fast",
    "introduction",
    "intro"
  ],
  "author": "@nelsonic <contact.nelsonic@gmail.com> (https://github.com/nelsonic)",
  "license": "GPL-2.0",
  "bugs": {
    "url": "https://github.com/nelsonic/learn-redis/issues"
  },
  "homepage": "https://github.com/nelsonic/learn-redis",
  "dependencies": {
    "redis": "^2.6.2",
    "redis-connection": "^5.0.0"
  },
  "devDependencies": {
    "istanbul": "^0.4.4",
    "tap-spec": "^4.1.1",
    "tape": "^4.6.0"
  },
  "scripts": {
    "view-cov": "open .",
    "coverage": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js && ./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
    "test": "./node_modules/tape/bin/tape ./test/*.js",
    "spec": "node ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js"
  },
  "engines": {
    "node": ">= 4.2.3"
  }
}