Path: blob/master/node_modules/@sindresorhus/is/package.json
1126 views
{1"name": "@sindresorhus/is",2"version": "4.6.0",3"description": "Type check values",4"license": "MIT",5"repository": "sindresorhus/is",6"funding": "https://github.com/sindresorhus/is?sponsor=1",7"author": {8"name": "Sindre Sorhus",9"email": "[email protected]",10"url": "https://sindresorhus.com"11},12"main": "dist/index.js",13"engines": {14"node": ">=10"15},16"scripts": {17"build": "del dist && tsc",18"test": "xo && ava",19"prepare": "npm run build"20},21"files": [22"dist"23],24"keywords": [25"type",26"types",27"is",28"check",29"checking",30"validate",31"validation",32"utility",33"util",34"typeof",35"instanceof",36"object",37"assert",38"assertion",39"test",40"kind",41"primitive",42"verify",43"compare",44"typescript",45"typeguards",46"types"47],48"devDependencies": {49"@sindresorhus/tsconfig": "^0.7.0",50"@types/jsdom": "^16.1.0",51"@types/node": "^14.0.13",52"@types/zen-observable": "^0.8.0",53"@typescript-eslint/eslint-plugin": "^2.20.0",54"@typescript-eslint/parser": "^2.20.0",55"ava": "^3.3.0",56"del-cli": "^2.0.0",57"eslint-config-xo-typescript": "^0.26.0",58"jsdom": "^16.0.1",59"rxjs": "^6.4.0",60"tempy": "^0.4.0",61"ts-node": "^8.3.0",62"typescript": "~3.8.2",63"xo": "^0.26.1",64"zen-observable": "^0.8.8"65},66"types": "dist/index.d.ts",67"sideEffects": false,68"ava": {69"extensions": [70"ts"71],72"require": [73"ts-node/register"74]75},76"xo": {77"extends": "xo-typescript",78"extensions": [79"ts"80],81"parserOptions": {82"project": "./tsconfig.xo.json"83},84"globals": [85"BigInt",86"BigInt64Array",87"BigUint64Array"88],89"rules": {90"@typescript-eslint/promise-function-async": "off",91"@typescript-eslint/no-empty-function": "off",92"@typescript-eslint/explicit-function-return-type": "off"93}94}95}969798