-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
51 lines (51 loc) · 1015 Bytes
/
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
{
"name": "@slimio/is",
"version": "2.0.0",
"description": "SlimIO is (JavaScript Primitives & Objects type checker)",
"main": "index.js",
"engines": {
"node": ">=16"
},
"private": false,
"scripts": {
"prepublishOnly": "pkg-ok",
"test": "c8 -r html ava --verbose"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SlimIO/is.git"
},
"keywords": [
"is",
"typecheck",
"check",
"checking",
"typeof",
"instanceof",
"validate",
"node",
"test",
"assert",
"assertion"
],
"files": [
"index.js",
"index.d.ts",
"src"
],
"author": "SlimIO",
"license": "MIT",
"bugs": {
"url": "https://github.com/SlimIO/is/issues"
},
"homepage": "https://github.com/SlimIO/is#readme",
"devDependencies": {
"@nodesecure/eslint-config": "^1.6.0",
"@types/node": "^18.11.18",
"ava": "^3.8.2",
"c8": "^7.12.0",
"cross-env": "^7.0.2",
"eslint": "^7.0.0",
"pkg-ok": "^2.3.1"
}
}