@esm2cjs/is
Version:
Type check values. This is a fork of sindresorhus/is, but with CommonJS support.
99 lines (98 loc) • 1.83 kB
JSON
{
"name": "@esm2cjs/is",
"version": "5.6.0",
"description": "Type check values. This is a fork of sindresorhus/is, but with CommonJS support.",
"license": "MIT",
"repository": "esm2cjs/is",
"funding": "https://github.com/sponsors/AlCalzone",
"author": {
"name": "Dominic Griesel",
"email": "d.griesel@gmx.net"
},
"exports": {
".": {
"import": "./build/esm/index.js",
"require": "./build/cjs/index.js"
},
"./package.json": "./package.json"
},
"types": "build/esm/index.d.ts",
"engines": {
"node": ">=14.16"
},
"scripts": {
"build": "del build/ && tsc",
"test": "tsc --noEmit && xo && ava"
},
"files": [
"build/esm/**/*.{js,d.ts,json}",
"build/cjs/**/*.{js,d.ts,json}"
],
"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": "^3.0.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^20.2.5",
"@types/zen-observable": "^0.8.3",
"ava": "^5.3.0",
"del-cli": "^5.0.0",
"expect-type": "^0.16.0",
"jsdom": "^20.0.1",
"rxjs": "^7.8.1",
"tempy": "^3.0.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4",
"xo": "^0.54.2",
"zen-observable": "^0.10.0"
},
"sideEffects": false,
"ava": {
"extensions": {
"ts": "module"
},
"nodeArguments": [
"--loader=ts-node/esm"
]
},
"publishConfig": {
"access": "public"
},
"main": "build/cjs/index.js",
"typesVersions": {
"*": {
"build/esm/index.d.ts": [
"build/esm/index.d.ts"
],
"build/cjs/index.d.ts": [
"build/esm/index.d.ts"
],
"*": [
"build/esm/*"
]
}
},
"module": "build/esm/index.js"
}