-
Notifications
You must be signed in to change notification settings - Fork 448
/
package.json
82 lines (82 loc) · 2.44 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "rescript",
"version": "12.0.0-alpha.5",
"description": "ReScript toolchain",
"keywords": [
"ReScript",
"Compiler",
"Types",
"JavaScript",
"Language"
],
"license": "SEE LICENSE IN LICENSE",
"homepage": "http://rescript-lang.org",
"bugs": "https://github.com/rescript-lang/rescript-compiler/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/rescript-lang/rescript-compiler.git"
},
"author": {
"name": "Hongbo Zhang",
"email": "[email protected]"
},
"maintainers": [
"Christoph Knittel (https://github.com/cknitt)",
"Cristiano Calcagno (https://github.com/cristianoc)",
"Florian Hammerschmidt (https://github.com/fhammerschmidt)",
"Gabriel Nordeborn (https://github.com/zth)",
"Hyeseong Kim (https://github.com/cometkim)",
"Jaap Frolich (https://github.com/jfrolich)",
"Matthias Le Brun (https://github.com/bloodyowl)",
"Patrick Ecker (https://github.com/ryyppy)",
"Paul Tsnobiladzé (https://github.com/tsnobip)",
"Woonki Moon (https://github.com/mununki)"
],
"engines": {
"node": ">=18"
},
"bin": {
"bsc": "cli/bsc",
"bstracing": "lib/bstracing",
"rescript": "cli/rescript",
"rewatch": "cli/rewatch"
},
"scripts": {
"postinstall": "node cli/rescript_postinstall.js",
"test": "node scripts/test.js -all",
"test-bsb": "node scripts/test.js -bsb",
"test-ocaml": "node scripts/test.js -ounit",
"format": "biome format --changed --no-errors-on-unmatched --write .",
"format:all": "biome format --write .",
"checkFormat": "biome format --changed --no-errors-on-unmatched .",
"checkFormat:all": "biome format .",
"coverage": "nyc --timeout=3000 --reporter=html mocha tests/tests/src/*_test.js && open ./coverage/index.html"
},
"files": [
"CHANGELOG.md",
"CREDITS.md",
"ninja.COPYING",
"darwin",
"darwinarm64",
"linux",
"linuxarm64",
"win32",
"docs/docson/build-schema.json",
"lib",
"cli"
],
"exports": {
"./lib/es6/*": "./lib/es6/*",
"./lib/js/*": "./lib/js/*",
"./package.json": "./package.json"
},
"imports": {
"#cli/bin_path": "./cli/bin_path.js"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"mocha": "10.1.0",
"nyc": "15.0.0"
},
"packageManager": "[email protected]+sha512.0e9d42e92bd2318408ed81eaff2da5f78baf23ee7d12a6eed44a6e2901d0f29d7ab715d1b918ade601f72e769a824d9a5c322383f22bbbda5dd396e79de2a077"
}