tunnckoCore/is-kindof

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "is-kindof",
  "version": "3.0.1",
  "description": "Check type of given javascript value. Support promises, generators, streams, and native types. Built on [kind-of][] lib.",
  "repository": "tunnckoCore/is-kindof",
  "author": "Charlike Mike Reagent <@tunnckoCore> (http://www.tunnckocore.tk)",
  "precommit.silent": true,
  "main": "index.js",
  "license": "MIT",
  "scripts": {
    "lint": "standard --verbose",
    "pretest": "npm run lint",
    "test": "npm run coverage",
    "posttest": "npm run lint:coverage",
    "coverage": "nyc node test.js",
    "lint:coverage": "nyc check-coverage --lines 0 --branches 0 --statements 0 --functions 0",
    "report-coverage": "nyc report --reporter=text-lcov | coveralls",
    "prerelease": "npm test",
    "release": "standard-version --sign --no-verify",
    "precommit": "git add --all",
    "commit": "git-cz"
  },
  "dependencies": {
    "kind-of-extra": "^1.0.4",
    "kind-of-types": "^1.0.1",
    "lazy-cache": "^2.0.1"
  },
  "devDependencies": {
    "commitizen": "^2.8.6",
    "coveralls": "^2.11.14",
    "cz-conventional-changelog": "^1.2.0",
    "mukla": "^0.4.5",
    "nyc": "^8.3.2",
    "pre-commit": "^1.1.3",
    "standard": "^8.5.0",
    "standard-version": "^3.0.0",
    "through2": "^2.0.1"
  },
  "files": [
    "index.js",
    "utils.js"
  ],
  "keywords": [
    "check",
    "functional",
    "is",
    "kind",
    "kindof",
    "programming",
    "type",
    "typeof",
    "utils",
    "validate"
  ],
  "config": {
    "commitizen": {
      "path": "./node_modules/cz-conventional-changelog"
    }
  },
  "verb": {
    "run": true,
    "toc": true,
    "layout": "empty",
    "tasks": [
      "readme"
    ],
    "related": {
      "list": [
        "kind-of",
        "kind-of-extra",
        "kind-of-types",
        "is-async-function",
        "is-function-equal",
        "is-callback-function",
        "to-callback",
        "always-done",
        "mukla",
        "minibase"
      ]
    },
    "reflinks": [
      "async-done",
      "base",
      "common-callback-names",
      "kind-of",
      "rfpify"
    ],
    "lint": {
      "reflinks": true
    }
  }
}