old_project/package.json

Summary

Maintainability
Test Coverage
{
  "name": "tudo",
  "version": "1.0.2",
  "description": "A single version of the truth with integrated task tracking, delegation and accountability.",
  "main": "index.js",
  "scripts": {
    "test": "node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.test.js",
    "coverage": "istanbul cover ./node_modules/tape/bin/tape ./test/*.test.js && istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
    "jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore .",
    "codeclimate": "CODECLIMATE_REPO_TOKEN=6c47340a2888b54541779bd8bffcaad5577095a7ae888b72b4736fc68eb094f8 ./node_modules/codeclimate-test-reporter/bin/codeclimate.js < ./coverage/lcov.info",
    "start": "node server.js",
    "dev": "nodemon server.js",
    "report": "open coverage/lcov-report/index.html"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dwyl/tudo.git"
  },
  "keywords": [
    "task",
    "tracking",
    "github",
    "issues",
    "real-time"
  ],
  "author": "nelsonic <contact.nelsonic@gmail.com> (https://github.com/nelsonic)",
  "license": "GPL-2.0",
  "bugs": {
    "url": "https://github.com/dwyl/tudo/issues"
  },
  "homepage": "https://github.com/dwyl/tudo",
  "dependencies": {
    "boom": "^2.8.0",
    "env2": "^2.0.1",
    "find": "^0.2.3",
    "hapi": "^9.0.2",
    "hoek": "^2.14.0",
    "inert": "^3.0.1",
    "joi": "^6.6.0",
    "jsonwebtoken": "^5.0.4",
    "redis": "^0.12.1",
    "riot": "^2.2.2",
    "wreck": "^6.0.0"
  },
  "peerDependencies": {
    "hapi": ">=9.x.x"
  },
  "devDependencies": {
    "aguid": "^1.0.3",
    "cheerio": "^0.19.0",
    "codeclimate-test-reporter": "^0.1.0",
    "decache": "^3.0.3",
    "github-scraper": "^3.0.21",
    "istanbul": "^0.3.17",
    "jshint": "^2.8.0",
    "nodemon": "^1.3.8",
    "pre-commit": "^1.0.10",
    "tap-spec": "^4.0.2",
    "tape": "^4.0.1"
  },
  "engines": {
    "node": ">=0.12"
  },
  "pre-commit": [
    "jshint",
    "coverage",
    "codeclimate"
  ]
}