forked from reasonml/reason
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (74 loc) · 2.51 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
{
"version": "1.13.4",
"description": "Friendly Syntax & Toolchain Powered by OCaml",
"repository": {
"type": "git",
"url": "https://github.com/facebook/reason.git"
},
"keywords": [
"reason"
],
"license": "BSD",
"homepage": "https://github.com/facebook/reason",
"exportedEnvVars": {
"reason_installed": {
"global": true,
"globalCollisionBehavior": "clobber",
"val": "true"
},
"FINDLIB": {
"global": true,
"resolveAsRelativePath": true,
"globalCollisionBehavior": "joinPath",
"val": "./_build/ocamlfind/lib"
},
"version": {
"val": "1.13.4",
"global": true,
"globalCollisionBehavior": "clobber"
},
"PATH": {
"global": true,
"resolveAsRelativePath": true,
"globalCollisionBehavior": "joinPath",
"val": "./_build/ocamlfind/bin"
},
"reason_enable": {
"global": true,
"globalCollisionBehavior": "clobber",
"val": "enable"
},
"reason_version": {
"global": true,
"globalCollisionBehavior": "clobber",
"val": "1.13.4"
}
},
"name": "reason",
"dependencies": {
"@opam-alpha/ocamlfind": "*",
"@opam-alpha/merlin-extend": "^ 0.3.0",
"@opam-alpha/menhir": ">= 20160303.0.0",
"@opam-alpha/result": "1.2.0",
"@opam-alpha/ocaml": "4.2.3",
"@opam-alpha/ocaml-migrate-parsetree": "*",
"@opam-alpha/result": "*",
"@opam-alpha/topkg": "0.8.1",
"@opam-alpha/reason-parser": "1.13.4",
"dependency-env": "*",
"opam-installer-bin": "https://github.com/yunxing/opam-installer-bin.git",
"nopam": "*",
"utop-bin": "https://github.com/reasonml/utop-bin"
},
"scripts": {
"editor": "eval $(dependencyEnv) && eval $EDITOR",
"postinstall": "eval $(dependencyEnv) && nopam && ./pkg/substs pkg/META.in && make precompile && ./build.native build --native true --native-dynlink true --utop ${utop_installed:-false} && (opam-installer --prefix=$opam_prefix || true)",
"clean": "eval $(dependencyEnv) && nopam && make clean",
"env": "eval $(dependencyEnv) && env",
"formatTest": "eval $(dependencyEnv) && cd formatTest; ./test.sh",
"whereisrefmt": "eval $(dependencyEnv) && which refmt"
},
"engines" : {
"npm" : ">=3.10.0"
}
}