-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.26 KB
/
Copy pathpackage.json
File metadata and controls
56 lines (56 loc) · 1.26 KB
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
{
"name": "inferjs-library",
"version": "0.0.7",
"description": "A runtime library that allows you to infer rules for extended type checking in JavaScript.",
"main": "index.js",
"homepage": "https://inferjs.com",
"type": "module",
"devDependencies": {
"inferjs-compiler": "^0.0.9",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
},
"scripts": {
"clean": "node bin/clean.js",
"build": "node bin/clean.js && node bin/build.js",
"test1": "node bin/build-test1-inferobject.js && node tests/test1.js"
},
"keywords": [
"inferjs",
"infer js",
"inferjs library",
"inferjs-library",
"type checking",
"type checking javascript",
"types",
"type",
"js types",
"javascript types",
"infer",
"infers",
"infer rules",
"infer type",
"infer types",
"expect",
"infer expectations",
"jsdoc"
],
"author": {
"name": "Adam Smith",
"url": "https://codevendor.com/"
},
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Codevendor/inferjs-library.git"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=5.0.0"
},
"bugs": {
"url": "https://github.com/Codevendor/inferjs-library/issues"
},
"engineStrict": true
}