-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.23 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
{
"name": "react-rules-of-hooks-ppx",
"version": "0.9.1",
"description": "ppx validates the rules of React hooks",
"author": "davesnx <dsnxmoreno@gmail.com>",
"keywords": [
"reason",
"ocaml",
"ppx",
"bucklescript",
"rescript",
"react",
"hooks",
"ppx",
"reason-react"
],
"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": {
"ocaml": "~4.10.0",
"@esy-ocaml/reason": "^3.6.2",
"@opam/dune": "2.8.4",
"@opam/ppxlib": "0.22.0",
"@reason-native/rely": "^3.2.1",
"@opam/ocaml-lsp-server": "1.4.1"
},
"scripts": {
"build": "esy dune build -p ReactRulesOfHooksPpx",
"watch": "esy dune build -p ReactRulesOfHooksPpx --watch",
"test": "esy b dune runtest",
"promote": "esy dune promote",
"format": "esy dune build @fmt --auto-promote",
"utop": "esy dune utop lib -- -implicit-bindings"
}
}