{
  "name": "typeov",
  "version": "1.2.6",
  "reveal": true,
  "description": "👺 weak but accurate type checking that returns a string representation of input's type",
  "main": "dist/typeov.js",
  "preferGlobal": false,
  "author": "Michael Scott Hertzberg <mshertzberg@gmail.com> (http://hertzber.gs/)",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/moimikey/typeov.git"
  },
  "bugs": {
    "url": "https://github.com/moimikey/typeov/issues"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org"
  },
  "homepage": "https://github.com/moimikey/typeov",
  "keywords": [
    "type",
    "types",
    "coerce",
    "coercion",
    "checker",
    "check",
    "flow",
    "typing",
    "typeof",
    "typeov",
    "detection",
    "ispromise",
    "isnumber",
    "isinfinity",
    "isnull",
    "isundefined",
    "isbool",
    "isboolean",
    "isarray",
    "isobject",
    "isstring",
    "whatis",
    "kindof",
    "assert",
    "is",
    "what"
  ],
  "browser": {
    "fs": false
  },
  "scripts": {
    "build": "npm-run-all -s compile",
    "cleanup": "rimraf .eslintcache *.log* dist/*",
    "compile": "mkdirp dist && babel src/typeov.js -o dist/typeov.js",
    "lint": "standard src/**/*.js",
    "prebuild": "npm-run-all -s lint test cleanup",
    "prepublish": "npm-run-all -s build",
    "publish-please": "publish-please",
    "test:watch": "nodemon -w src --exec tap -Rspec src/typeov.spec.js",
    "test": "tap src/typeov.spec.js"
  },
  "devDependencies": {
    "@babel/cli": "^7.0.0",
    "@babel/core": "^7.0.0",
    "@babel/preset-env": "^7.0.0",
    "mkdirp": "^1.0.4",
    "nodemon": "^2.0.6",
    "npm-run-all": "^4.1.5",
    "rimraf": "^3.0.2",
    "standard": "^16.0.3",
    "tap": "^14.11.0"
  }
}
