docdis/learn-redis

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "learn-redis",
  "version": "1.0.0",
  "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": "ISC",
  "bugs": {
    "url": "https://github.com/nelsonic/learn-redis/issues"
  },
  "homepage": "https://github.com/nelsonic/learn-redis",
  "dependencies": {
    "hiredis": "^0.3.0",
    "redis": "^0.12.1"
  },
  "devDependencies": {
    "codeclimate-test-reporter": "0.0.4",
    "istanbul": "^0.3.13",
    "tap-spec": "^3.0.0",
    "tape": "^4.0.0"
  },
  "scripts": {
    "view-cov": "open .",
    "codeclimate": "CODECLIMATE_REPO_TOKEN=0839d00dd01047ffadfb3c56bf9c9baa0047179de582a47517e3f558ad4eafff ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info",
    "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": "istanbul cover ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js",
    "spec": "node ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.js"
  },
  "engines": {
    "node": ">= 0.10"
  }
}