1 | {
|
2 | "name": "@sindresorhus/is",
|
3 | "version": "6.3.0",
|
4 | "description": "Type check values",
|
5 | "license": "MIT",
|
6 | "repository": "sindresorhus/is",
|
7 | "funding": "https://github.com/sindresorhus/is?sponsor=1",
|
8 | "author": {
|
9 | "name": "Sindre Sorhus",
|
10 | "email": "sindresorhus@gmail.com",
|
11 | "url": "https://sindresorhus.com"
|
12 | },
|
13 | "type": "module",
|
14 | "exports": "./dist/index.js",
|
15 | "types": "./dist/index.d.ts",
|
16 | "sideEffects": false,
|
17 | "engines": {
|
18 | "node": ">=16"
|
19 | },
|
20 | "scripts": {
|
21 | "build": "del dist && tsc",
|
22 | "test": "tsc --noEmit && xo && NODE_OPTIONS='--loader=ts-node/esm --no-warnings=ExperimentalWarning' ava",
|
23 | "prepare": "npm run build"
|
24 | },
|
25 | "files": [
|
26 | "dist"
|
27 | ],
|
28 | "keywords": [
|
29 | "type",
|
30 | "types",
|
31 | "is",
|
32 | "check",
|
33 | "checking",
|
34 | "validate",
|
35 | "validation",
|
36 | "utility",
|
37 | "util",
|
38 | "typeof",
|
39 | "instanceof",
|
40 | "object",
|
41 | "assert",
|
42 | "assertion",
|
43 | "test",
|
44 | "kind",
|
45 | "primitive",
|
46 | "verify",
|
47 | "compare",
|
48 | "typescript",
|
49 | "typeguards",
|
50 | "types"
|
51 | ],
|
52 | "devDependencies": {
|
53 | "@sindresorhus/tsconfig": "^4.0.0",
|
54 | "@types/jsdom": "^21.1.1",
|
55 | "@types/node": "^20.5.0",
|
56 | "@types/zen-observable": "^0.8.3",
|
57 | "ava": "^5.3.1",
|
58 | "del-cli": "^5.0.0",
|
59 | "jsdom": "^22.1.0",
|
60 | "rxjs": "^7.8.1",
|
61 | "tempy": "^3.1.0",
|
62 | "ts-node": "^10.9.1",
|
63 | "typescript": "^5.1.6",
|
64 | "xo": "^0.56.0",
|
65 | "zen-observable": "^0.10.0",
|
66 | "expect-type": "^0.16.0"
|
67 | },
|
68 | "ava": {
|
69 | "extensions": {
|
70 | "ts": "module"
|
71 | }
|
72 | }
|
73 | }
|