-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.05 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.05 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
{
"name": "jscriptor",
"version": "0.0.6",
"description": "A lightweight typed superset for JavaScript that catches type mismatches before runtime",
"type": "commonjs",
"main": "src/cli.js",
"bin": {
"jscriptor": "src/cli.js"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "node src/test/test.js",
"typecheck": "node src/cli.js check-all"
},
"repository": {
"type": "git",
"url": "https://github.com/Hareesh108/jscriptor.git"
},
"homepage": "https://github.com/Hareesh108/jscriptor#readme",
"bugs": {
"url": "https://github.com/Hareesh108/jscriptor/issues"
},
"keywords": [
"javascript",
"js",
"types",
"javascript-library",
"checker",
"js-scriptor",
"jscriptor",
"compiler",
"typescript",
"mvp",
"test",
"assert",
"minimal",
"type-checker",
"type-inference",
"hindley-milner"
],
"author": {
"name": "Hareesh Bhittam",
"url": "https://github.com/Hareesh108"
},
"license": "MIT",
"engines": {
"node": ">=14.0.0"
}
}