forked from sindresorhus/is
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
98 lines (98 loc) · 1.79 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"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"
}