83 lines
1.5 KiB
Plaintext
83 lines
1.5 KiB
Plaintext
{
|
|
"name": "@sindresorhus/is",
|
|
"version": "5.3.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": "https://sindresorhus.com"
|
|
},
|
|
"type": "module",
|
|
"exports": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"engines": {
|
|
"node": ">=14.16"
|
|
},
|
|
"scripts": {
|
|
"build": "del dist && tsc",
|
|
"test": "xo && ava",
|
|
"prepare": "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": "^3.0.1",
|
|
"@types/jsdom": "^16.2.15",
|
|
"@types/node": "^18.0.6",
|
|
"@types/zen-observable": "^0.8.3",
|
|
"ava": "^4.3.1",
|
|
"del-cli": "^5.0.0",
|
|
"jsdom": "^20.0.0",
|
|
"rxjs": "^7.5.6",
|
|
"tempy": "^3.0.0",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "~4.7.4",
|
|
"xo": "^0.51.0",
|
|
"zen-observable": "^0.8.15"
|
|
},
|
|
"sideEffects": false,
|
|
"ava": {
|
|
"extensions": {
|
|
"ts": "module"
|
|
},
|
|
"nodeArguments": [
|
|
"--loader=ts-node/esm"
|
|
]
|
|
},
|
|
"xo": {
|
|
"rules": {
|
|
"@typescript-eslint/no-empty-function": "off",
|
|
"@typescript-eslint/explicit-function-return-type": "off",
|
|
"@typescript-eslint/triple-slash-reference": "off"
|
|
}
|
|
}
|
|
}
|