forked from sindresorhus/ow
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 loc) · 1.67 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
{
"name": "ow",
"version": "0.23.0",
"description": "Function argument validation for humans",
"license": "MIT",
"repository": "sindresorhus/ow",
"funding": "https://github.com/sponsors/sindresorhus",
"author": {
"name": "Sindre Sorhus",
"email": "[email protected]",
"url": "https://sindresorhus.com"
},
"main": "source/index.js",
"module": "source/index.js",
"type": "module",
"engines": {
"node": ">=14"
},
"scripts": {
"test": "xo && nyc ava",
"docs": "typedoc source/index.js",
"postpublish": "npm run docs && gh-pages --dist docs --no-history --message \"Deploy documentation\"",
"example": "node example.js"
},
"files": [
"source",
"dev-only.js"
],
"keywords": [
"type",
"types",
"check",
"checking",
"guard",
"guards",
"assert",
"assertion",
"predicate",
"predicates",
"is",
"validate",
"validation",
"utility",
"util",
"typeof",
"instanceof",
"object"
],
"dependencies": {
"@sindresorhus/is": "^4.0.0",
"callsites": "^3.1.0",
"dot-prop": "^6.0.1",
"lodash.isequal": "^4.5.0",
"type-fest": "^0.21.3",
"vali-date": "^1.0.0"
},
"devDependencies": {
"ava": "^3.15.0",
"expect-type": "^0.11.0",
"gh-pages": "^3.1.0",
"nyc": "^15.1.0",
"typedoc": "^0.20.32",
"typescript": "~4.2.3",
"xo": "^0.38.2"
},
"sideEffects": false,
"xo": {
"ignores": [
"example.js",
"dev-only.js",
"source/utils/infer-label.browser.js"
],
"rules": {
"no-useless-return": "off",
"ava/no-ignored-test-files": "off",
"import/no-anonymous-default-export": "off"
}
},
"ava": {
"files": [
"test/**",
"!test/fixtures/**"
]
},
"nyc": {
"reporter": [
"text",
"lcov"
]
}
}