1 | {
|
2 | "name": "@sindresorhus/is",
|
3 | "version": "5.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 | "engines": {
|
17 | "node": ">=14.16"
|
18 | },
|
19 | "scripts": {
|
20 | "build": "del dist && tsc",
|
21 | "test": "xo && ava",
|
22 | "prepare": "npm run build"
|
23 | },
|
24 | "files": [
|
25 | "dist"
|
26 | ],
|
27 | "keywords": [
|
28 | "type",
|
29 | "types",
|
30 | "is",
|
31 | "check",
|
32 | "checking",
|
33 | "validate",
|
34 | "validation",
|
35 | "utility",
|
36 | "util",
|
37 | "typeof",
|
38 | "instanceof",
|
39 | "object",
|
40 | "assert",
|
41 | "assertion",
|
42 | "test",
|
43 | "kind",
|
44 | "primitive",
|
45 | "verify",
|
46 | "compare",
|
47 | "typescript",
|
48 | "typeguards",
|
49 | "types"
|
50 | ],
|
51 | "devDependencies": {
|
52 | "@sindresorhus/tsconfig": "^3.0.1",
|
53 | "@types/jsdom": "^16.2.15",
|
54 | "@types/node": "^18.0.6",
|
55 | "@types/zen-observable": "^0.8.3",
|
56 | "ava": "^4.3.1",
|
57 | "del-cli": "^5.0.0",
|
58 | "jsdom": "^20.0.0",
|
59 | "rxjs": "^7.5.6",
|
60 | "tempy": "^3.0.0",
|
61 | "ts-node": "^10.9.1",
|
62 | "typescript": "~4.7.4",
|
63 | "xo": "^0.51.0",
|
64 | "zen-observable": "^0.8.15"
|
65 | },
|
66 | "sideEffects": false,
|
67 | "ava": {
|
68 | "extensions": {
|
69 | "ts": "module"
|
70 | },
|
71 | "nodeArguments": [
|
72 | "--loader=ts-node/esm"
|
73 | ]
|
74 | },
|
75 | "xo": {
|
76 | "rules": {
|
77 | "@typescript-eslint/no-empty-function": "off",
|
78 | "@typescript-eslint/explicit-function-return-type": "off",
|
79 | "@typescript-eslint/triple-slash-reference": "off"
|
80 | }
|
81 | }
|
82 | }
|