-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.48 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
{
"name": "react-rules-of-hooks-ppx",
"version": "0.1.0",
"description": "",
"author": "David Sancho <[email protected]>",
"keywords": [
"reason",
"ocaml",
"ppx",
"bucklescript",
"rescript",
"react",
"hooks"
],
"esy": {
"buildsInSource": "_build",
"build": [
[
"dune",
"build",
"-p",
"ReactRulesOfHooksPpx"
]
],
"buildDev": [
[
"dune",
"build",
"--promote-install-files",
"--root",
".",
"--only-package",
"ReactRulesOfHooksPpx"
]
],
"buildEnv": {
"ODOC_SYNTAX": "re"
},
"release": {
"bin": [
"Bin"
]
}
},
"devDependencies": {
"@opam/merlin": "*",
"ocaml": "4.10.0",
"@esy-ocaml/reason": ">= 3.6.0 < 4.0.0",
"@opam/dune": "> 1.11.4",
"@opam/ocaml-migrate-parsetree": "^1.7.3",
"@opam/ppxlib": "0.14.0",
"@reason-native/rely": "^3.2.1",
"@opam/ocaml-lsp-server": "ocaml/ocaml-lsp:ocaml-lsp-server.opam#fbc433e14035d520c7137916ae710b8ec3b415e9"
},
"resolutions": {
"@esy-ocaml/reason": "facebook/reason:reason.json#773dbcd"
},
"scripts": {
"watch": "esy dune build -p ReactRulesOfHooksPpx --watch",
"test": "esy x Run.exe",
"doc": "esy dune build @doc",
"doc-path": "esy echo #{self.target_dir}/default/_doc/_html/index.html",
"format": "esy dune build @fmt --auto-promote",
"utop": "esy dune utop lib -- -implicit-bindings"
}
}