forked from rescript-lang/rescript-compiler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
{
"name": "@greenlabs/rescript",
"devDependencies": {
"mocha": "^7.2.0",
"nyc": "^15.0.0"
},
"bin": {
"bsc": "bsc",
"bsrefmt": "bsrefmt",
"bstracing": "lib/bstracing",
"rescript" : "rescript"
},
"scripts": {
"test": "node scripts/ciTest.js -all",
"test-theme": "node scripts/ciTest.js -theme",
"test-bsb": "node scripts/ciTest.js -bsb",
"test-ocaml": "node scripts/ciTest.js -ounit",
"postinstall": "node scripts/install.js",
"test-env-comipler": "BS_TRAVIS_CI=1 node scripts/install.js -use-env-compiler",
"coverage": "nyc --timeout=3000 --reporter=html mocha jscomp/test/*test.js && open ./coverage/index.html"
},
"version": "10.0.0",
"description": "ReScript toolchain",
"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"
}