forked from rescript-lang/rescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.45 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
{
"name": "rescript",
"version": "11.0.0-alpha.1",
"devDependencies": {
"mocha": "^10.1.0",
"nyc": "^15.0.0",
"prettier": "^2.7.1",
"rollup": "^0.49.2"
},
"bin": {
"bsc": "bsc",
"bstracing": "lib/bstracing",
"rescript": "rescript"
},
"scripts": {
"test": "node scripts/ciTest.js -all",
"test-bsb": "node scripts/ciTest.js -bsb",
"test-ocaml": "node scripts/ciTest.js -ounit",
"postinstall": "node scripts/rescript_postinstall.js",
"format": "prettier --write .",
"checkFormat": "prettier --check .",
"coverage": "nyc --timeout=3000 --reporter=html mocha jscomp/test/*test.js && open ./coverage/index.html"
},
"description": "ReScript toolchain",
"files": [
"CHANGELOG.md",
"CREDITS.md",
"ninja.COPYING",
"bsc",
"rescript",
"darwin",
"darwinarm64",
"linux",
"win32",
"docs/docson/build-schema.json",
"lib",
"scripts"
],
"repository": {
"type": "git",
"url": "git+https://github.com/rescript-lang/rescript-compiler.git"
},
"keywords": [
"ReScript",
"Compiler",
"Types",
"JavaScript",
"Language"
],
"author": {
"name": "Hongbo Zhang"
},
"maintainers": [
{
"name": "hongbo_zhang",
"email": "[email protected]"
}
],
"license": "SEE LICENSE IN LICENSE",
"bugs": {
"url": "https://github.com/rescript-lang/rescript-compiler/issues"
},
"homepage": "http://rescript-lang.org"
}