-
Notifications
You must be signed in to change notification settings - Fork 464
/
Copy pathpackage.json
96 lines (96 loc) · 2.66 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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "rescript",
"version": "12.0.0-alpha.12",
"description": "ReScript toolchain",
"type": "module",
"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": "bobzhang1988@gmail.com"
},
"maintainers": [
"Christoph Knittel (https://github.com/cknitt)",
"Cristiano Calcagno (https://github.com/cristianoc)",
"Dmitry Zakharov (https://github.com/DZakh)",
"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": ">=20.11.0"
},
"bin": {
"bsc": "cli/bsc.js",
"bstracing": "lib/bstracing.js",
"rescript": "cli/rescript.js",
"rescript-tools": "cli/rescript-tools.js",
"rewatch": "cli/rewatch.js"
},
"scripts": {
"test": "node scripts/test.js -all",
"test-bsb": "node scripts/test.js -bsb",
"test-ocaml": "node scripts/test.js -ounit",
"check": "biome check --changed --no-errors-on-unmatched .",
"check:all": "biome check .",
"format": "biome check --changed --no-errors-on-unmatched . --fix",
"coverage": "nyc --timeout=3000 --reporter=html mocha tests/tests/src/*_test.js && open ./coverage/index.html",
"typecheck": "tsc"
},
"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/*": "./cli/common/*.js",
"#dev/*": "./lib_dev/*.js",
"#lib/minisocket": "./lib/minisocket.js"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20.14.9",
"@types/semver": "^7.5.8",
"mocha": "10.8.2",
"nyc": "15.0.0",
"semver": "7.6.2",
"typescript": "5.8.2"
},
"workspaces": [
"tests/dependencies/**",
"tests/analysis_tests/**",
"tests/gentype_tests/**",
"tests/tools_tests"
],
"packageManager": "yarn@4.7.0"
}