-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.54 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
{
"name": "inferjs-compiler",
"version": "0.0.9",
"description": "A compiler that processes JSDoc comments into an InferObject File for utilizing with the InferJS Library.",
"main": "bin/main.js",
"type": "module",
"homepage": "https://inferjs.com",
"scripts": {
"install": "node bin/install.js",
"uninstall": "node bin/uninstall.js",
"clean": "node bin/clean.js",
"build": "node bin/clean.js && node bin/build.js",
"test": "node tests/test.js --test --no-warnings",
"test-parse-dir": "node tests/test-parse-dir.js",
"test-parse-file-list": "node tests/test-parse-file-list.js",
"test-parse-file": "node tests/test-parse-file.js",
"test-parse-list": "node tests/test-parse-list.js"
},
"keywords": [
"inferjs",
"inferjs compiler",
"inferjs-compiler",
"infer object",
"inferobject",
"inferjs infer object",
"jsdoc",
"types",
"type",
"type checking",
"type infer",
"infer",
"infers",
"compiler",
"inferjs-library",
"inferjs library"
],
"author": {
"name": "Adam Smith",
"url": "https://codevendor.com/"
},
"contributors": [],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Codevendor/inferjs-compiler.git"
},
"engines": {
"node": ">=12.0.0",
"npm": ">=5.0.0"
},
"bin": {
"inferjs-compiler": "bin/main.js"
},
"dependencies": {
"console-table-printer": "^2.11.1",
"curry-console": "^0.0.6"
},
"bugs": {
"url": "https://github.com/Codevendor/inferjs-compiler/issues"
}
}