-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
62 lines (62 loc) · 1.16 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
{
"name": "typical",
"author": "Lloyd Brookes <[email protected]>",
"version": "7.3.0",
"description": "Isomorphic, functional type-checking for Javascript",
"repository": {
"type": "git",
"url": "git+https://github.com/75lb/typical.git"
},
"license": "MIT",
"type": "module",
"exports": {
"import": "./index.js",
"require": "./dist/index.cjs"
},
"keywords": [
"type",
"checking",
"check",
"value",
"valid",
"is",
"detect",
"number",
"object",
"plainobject",
"array",
"like",
"defined",
"string",
"boolean",
"function",
"promise",
"iterable",
"class",
"primitive",
"isstring",
"isclass",
"isiterable",
"isdefined",
"isobject",
"isomorphic",
"async",
"is-async",
"es6",
"es2015"
],
"engines": {
"node": ">=12.17"
},
"scripts": {
"test": "npm run dist && npm run test:ci",
"test:ci": "75lb-nature test-runner test/*.js",
"docs": "75lb-nature jsdoc2md -t README.hbs index.js > README.md",
"dist": "75lb-nature cjs-build index.js"
},
"devDependencies": {},
"files": [
"index.js",
"dist"
]
}