-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
executable file
·49 lines (49 loc) · 1.22 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": "<PACKAGE_NAME_FULL>",
"version": "0.1.0",
"description": "Starter Reason Project",
"esy": {
"build": "dune build -p #{self.name}",
"buildDev": "pesy build",
"release": {
"rewritePrefix": true,
"bin": [
"<PACKAGE_NAME_UPPER_CAMEL>App"
]
}
},
"pesy": {
"azure-project": "esy-dev/esy",
"template": "0.1.0-alpha.22",
"github": "esy/pesy-reason-template"
},
"buildDirs": {
"library": {},
"bin": {
"imports": [
"Library = require('<PUBLIC_LIB_NAME>')"
],
"bin": {
"<PACKAGE_NAME_UPPER_CAMEL>App": "<PACKAGE_NAME_UPPER_CAMEL>App.re"
}
}
},
"scripts": {
"start": "esy x <PACKAGE_NAME_UPPER_CAMEL>App"
},
"dependencies": {
"@opam/dune": "*",
"@opam/reason": "*",
"@pesy/esy-pesy": "esy/pesy:package.json#270446fd9699292223cdd6b145c8178e6a19f78d",
"ocaml": "4.14.x"
},
"devDependencies": {
"@opam/merlin": "*",
"@opam/ocaml-lsp-server": "*"
},
"resolutions": {
"@opam/console": "git+https://github.com/reasonml/reason-native.git:console.opam#aec0ac68",
"@opam/pastel": "git+https://github.com/reasonml/reason-native.git:pastel.opam#aec0ac68",
"@opam/num": "opam:1.4"
}
}