package.json

Summary

Maintainability
Test Coverage
{
  "name": "aguid",
  "version": "1.0.4",
  "description": "A Standard-Compliant Globally Unique IDentifier (GUID) generator for Node.js and Browser",
  "main": "lib/index.js",
  "scripts": {
    "test": "node ./node_modules/.bin/istanbul cover ./node_modules/tape/bin/tape ./test/*.js | node_modules/tap-spec/bin/cmd.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",
    "jshint": "./node_modules/jshint/bin/jshint -c .jshintrc --exclude-path .gitignore ."
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/dwyl/aguid.git"
  },
  "keywords": [
    "RFC4122",
    "GUID",
    "Generate",
    "Node",
    "Browser"
  ],
  "author": "@nelsonic <contact.nelsonic@gmail.com> (https://github.com/nelsonic)",
  "license": "ISC",
  "bugs": {
    "url": "https://github.com/dwyl/aguid/issues"
  },
  "homepage": "https://github.com/dwyl/aguid",
  "dependencies": {
    "uuid": "^3.0.1"
  },
  "devDependencies": {
    "istanbul": "^0.4.0",
    "jshint": "^2.8.0",
    "pre-commit": "1.1.2",
    "tap-spec": "^4.1.0",
    "tape": "^4.2.2"
  },
  "engines": {
    "node": ">=4.0"
  },
  "pre-commit": [
    "jshint",
    "coverage"
  ]
}