-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
34 lines (34 loc) · 1.31 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
{
"name": "rebel",
"description": "Build system for reason that conforms to the magic-build spec. Implemented with Jenga.",
"dependencies": {
"dependency-env": "https://github.com/npm-ml/dependency-env.git",
"js_of_ocaml-bin": "https://github.com/reasonml/js_of_ocaml-bin.git",
"@opam-alpha/jenga": "*",
"@opam-alpha/ocamlfind": "*",
"@opam-alpha/yojson": "*",
"nopam": "https://github.com/yunxing/nopam.git",
"ocamlBetterErrors": "0.0.10",
"reason": "https://github.com/facebook/reason.git"
},
"devDependencies": {},
"exportedEnvVars": {
"PATH": {
"global": true,
"globalCollisionBehavior": "joinPath",
"resolveAsRelativePath": true,
"val": "./_build/src/"
}
},
"license": "ISC",
"scripts": {
"rebel:me": "eval $(dependencyEnv) && npm run rebel && ./rebel.sh examples/multiple-entrypoint",
"rebel:re": "eval $(dependencyEnv) && npm run rebel && ./rebel.sh examples/reason-project",
"rebel:rs": "eval $(dependencyEnv) && npm run rebel && ./rebel.sh examples/recursive-src",
"rebel:bs": "eval $(dependencyEnv) && npm run rebel && ./rebel.sh examples/bs-project",
"rebel": "eval $(dependencyEnv) && nopam && ./compile-rebel.sh",
"editor": "eval $(dependencyEnv) && $EDITOR .",
"postinstall": "npm run rebel"
},
"version": "0.0.23"
}