{
	"name": "@sindresorhus/is",
	"version": "1.2.0",
	"description": "Type check values",
	"license": "MIT",
	"repository": "sindresorhus/is",
	"author": {
		"name": "Sindre Sorhus",
		"email": "sindresorhus@gmail.com",
		"url": "sindresorhus.com"
	},
	"main": "dist",
	"engines": {
		"node": ">=8"
	},
	"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.4.0",
		"@types/jsdom": "^12.2.4",
		"@types/node": "^12.0.10",
		"@types/zen-observable": "^0.8.0",
		"@typescript-eslint/eslint-plugin": "^1.11.0",
		"@typescript-eslint/parser": "^1.11.0",
		"ava": "^2.1.0",
		"del-cli": "^2.0.0",
		"eslint-config-xo-typescript": "^0.15.0",
		"jsdom": "^15.0.0",
		"rxjs": "^6.4.0",
		"tempy": "^0.3.0",
		"ts-node": "^8.3.0",
		"typescript": "^3.4.1",
		"xo": "^0.24.0",
		"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"
		],
		"globals": [
			"BigInt",
			"BigInt64Array",
			"BigUint64Array"
		],
		"rules": {
			"import/first": "off",
			"import/newline-after-import": "off",
			"@typescript-eslint/promise-function-async": "off",
			"@typescript-eslint/no-empty-function": "off",
			"@typescript-eslint/explicit-function-return-type": "off"
		}
	}
}
