nelsonic/hits

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "hits",
  "version": "2.0.3",
  "description": "all the hits",
  "main": "lib/hits.js",
  "directories": {
    "test": "test"
  },
  "scripts": {
    "nocov": "./node_modules/tape/bin/tape ./test/*.js",
    "test": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js",
    "coverage": "./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js && ./node_modules/.bin/istanbul check-coverage --statements 100 --functions 100 --lines 100 --branches 100",
    "start": "node server.js",
    "dev": "PORT=8000 ./node_modules/.bin/nodemon ./server.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dwyl/hits.git"
  },
  "keywords": [
    "hits",
    "hit counter"
  ],
  "author": "some random person on the internet...",
  "license": "GPL-2.0",
  "bugs": {
    "url": "https://github.com/dwyl/hits/issues"
  },
  "homepage": "https://github.com/dwyl/hits#readme",
  "dependencies": {
    "redis-connection": "^5.4.0",
    "socket.io": "^2.0.3"
  },
  "devDependencies": {
    "decache": "^4.1.0",
    "istanbul": "^0.4.4",
    "mkdirp": "^0.5.1",
    "nodemon": "^1.11.0",
    "pre-commit": "^1.2.2",
    "rimraf": "^2.6.1",
    "tape": "^4.8.0"
  },
  "pre-commit": [
    "coverage"
  ]
}