summaryrefslogtreecommitdiff
path: root/node_modules/@sindresorhus/is/package.json
blob: 8052a87884f836a35b688b2d669cb9a88762b2ef (plain)
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
{
	"name": "@sindresorhus/is",
	"version": "4.6.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"
	},
	"main": "dist/index.js",
	"engines": {
		"node": ">=10"
	},
	"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": "^0.7.0",
		"@types/jsdom": "^16.1.0",
		"@types/node": "^14.0.13",
		"@types/zen-observable": "^0.8.0",
		"@typescript-eslint/eslint-plugin": "^2.20.0",
		"@typescript-eslint/parser": "^2.20.0",
		"ava": "^3.3.0",
		"del-cli": "^2.0.0",
		"eslint-config-xo-typescript": "^0.26.0",
		"jsdom": "^16.0.1",
		"rxjs": "^6.4.0",
		"tempy": "^0.4.0",
		"ts-node": "^8.3.0",
		"typescript": "~3.8.2",
		"xo": "^0.26.1",
		"zen-observable": "^0.8.8"
	},
	"types": "dist/index.d.ts",
	"sideEffects": false,
	"ava": {
		"extensions": [
			"ts"
		],
		"require": [
			"ts-node/register"
		]
	},
	"xo": {
		"extends": "xo-typescript",
		"extensions": [
			"ts"
		],
		"parserOptions": {
			"project": "./tsconfig.xo.json"
		},
		"globals": [
			"BigInt",
			"BigInt64Array",
			"BigUint64Array"
		],
		"rules": {
			"@typescript-eslint/promise-function-async": "off",
			"@typescript-eslint/no-empty-function": "off",
			"@typescript-eslint/explicit-function-return-type": "off"
		}
	}
}