is/package.json

77 lines
1.6 KiB
JSON
Raw Normal View History

2017-09-22 00:44:27 +07:00
{
2017-12-02 12:10:04 +01:00
"name": "@sindresorhus/is",
2025-12-27 11:35:17 +01:00
"version": "7.2.0",
2019-02-12 14:40:44 +07:00
"description": "Type check values",
2017-12-02 12:10:04 +01:00
"license": "MIT",
"repository": "sindresorhus/is",
2020-01-22 18:47:01 +07:00
"funding": "https://github.com/sindresorhus/is?sponsor=1",
2017-12-02 12:10:04 +01:00
"author": {
"name": "Sindre Sorhus",
"email": "sindresorhus@gmail.com",
2020-02-22 02:01:58 +07:00
"url": "https://sindresorhus.com"
2017-12-02 12:10:04 +01:00
},
"type": "module",
2024-07-10 15:41:12 +02:00
"exports": {
"types": "./distribution/index.d.ts",
"default": "./distribution/index.js"
},
2024-02-06 14:55:52 +07:00
"sideEffects": false,
2017-12-02 12:10:04 +01:00
"engines": {
2026-04-07 17:38:43 +07:00
"node": ">=22"
2017-12-02 12:10:04 +01:00
},
"scripts": {
2024-07-10 15:41:12 +02:00
"build": "del distribution && tsc",
2026-04-09 00:31:33 +07:00
"test": "tsc --noEmit && tsc --project test/tsconfig.json --noEmit && xo && node --experimental-transform-types --test test/test.ts",
2021-03-31 01:04:39 +07:00
"prepare": "npm run build"
2017-12-02 12:10:04 +01:00
},
"files": [
2024-07-10 15:41:12 +02:00
"distribution"
2017-12-02 12:10:04 +01:00
],
"keywords": [
"type",
"types",
"is",
"check",
"checking",
"validate",
"validation",
"utility",
"util",
"typeof",
"instanceof",
"object",
"assert",
"assertion",
"test",
"kind",
"primitive",
"verify",
2019-02-12 14:40:44 +07:00
"compare",
"typescript",
"typeguards",
"types"
2017-12-02 12:10:04 +01:00
],
2026-04-07 17:38:43 +07:00
"xo": {
"rules": {
"@typescript-eslint/no-unsafe-enum-comparison": "off",
"@typescript-eslint/no-confusing-void-expression": "off",
"@typescript-eslint/no-unsafe-type-assertion": "off",
"@stylistic/operator-linebreak": "off"
}
},
2017-12-02 12:10:04 +01:00
"devDependencies": {
2026-04-07 17:38:43 +07:00
"@sindresorhus/tsconfig": "^8.1.0",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.5.2",
2024-07-10 15:41:12 +02:00
"@types/zen-observable": "^0.8.7",
2026-04-07 17:38:43 +07:00
"del-cli": "^7.0.0",
"expect-type": "^1.3.0",
"jsdom": "^29.0.2",
"rxjs": "^7.8.2",
"tempy": "^3.2.0",
"typescript": "6.0.2",
"xo": "^2.0.2",
2024-06-25 08:08:48 +08:00
"zen-observable": "^0.10.0"
}
2017-09-22 00:44:27 +07:00
}