{ "name": "@sindresorhus/is", "version": "2.1.0", "description": "Type check values", "license": "MIT", "repository": "sindresorhus/is", "funding": "https://github.com/sindresorhus/is?sponsor=1", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "sindresorhus.com" }, "main": "dist", "engines": { "node": ">=10" }, "scripts": { "build": "del dist && tsc", "test": "xo && ava", "prepublishOnly": "npm run build" }, "files": [ "dist" ], "keywords": [ "type", "types", "is", "check", "checking", "validate", "validation", "utility", "util", "typeof", "instanceof", "object", "assert", "assertion", "test", "kind", "primitive", "verify", "compare", "typescript", "typeguards", "types" ], "devDependencies": { "@sindresorhus/tsconfig": "^0.7.0", "@types/jsdom": "^12.2.4", "@types/node": "^12.12.6", "@types/zen-observable": "^0.8.0", "@typescript-eslint/eslint-plugin": "^2.18.0", "@typescript-eslint/parser": "^2.18.0", "ava": "^2.1.0", "del-cli": "^2.0.0", "eslint-config-xo-typescript": "^0.24.1", "jsdom": "^16.0.1", "rxjs": "^6.4.0", "tempy": "^0.3.0", "ts-node": "^8.3.0", "typescript": "^3.7.5", "xo": "^0.25.3", "zen-observable": "^0.8.8" }, "types": "dist", "sideEffects": false, "ava": { "babel": false, "compileEnhancements": false, "extensions": [ "ts" ], "require": [ "ts-node/register" ] }, "xo": { "extends": "xo-typescript", "extensions": [ "ts" ], "parserOptions": { "project": "./tsconfig.xo.json" }, "globals": [ "BigInt", "BigInt64Array", "BigUint64Array" ], "rules": { "@typescript-eslint/promise-function-async": "off", "@typescript-eslint/no-empty-function": "off", "@typescript-eslint/explicit-function-return-type": "off" } } }