-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.32 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
{
"name": "re-bundler",
"version": "0.0.0",
"description": "My Project",
"esy": {
"build": "dune build -p <PACKAGE_NAME>",
"buildDev": "pesy",
"release": {
"releasedBinaries": [
"ReBundlerApp.exe"
]
}
},
"buildDirs": {
"test": {
"require": [
"re-bundler.lib"
],
"main": "TestReBundler",
"name": "TestReBundler.exe"
},
"library": {
"name": "re-bundler.lib",
"namespace": "ReBundler",
"require": [
"lwt.unix",
"lambdasoup",
"tablecloth-native",
"yojson"
]
},
"executable": {
"require": [
"re-bundler.lib"
],
"main": "ReBundlerApp",
"name": "ReBundlerApp.exe"
}
},
"scripts": {
"pesy": "bash -c 'env PESY_MODE=update pesy'",
"test": "esy x TestReBundler.exe",
"start": "esy x ReBundlerApp.exe"
},
"dependencies": {
"@esy-ocaml/reason": "*",
"@opam/cohttp-lwt-unix": "2.3.0",
"@opam/dune": ">=1.6.0",
"@opam/lambdasoup": "0.6.3",
"@opam/lwt": "4.1.0",
"@opam/lwt_ppx": "1.2.4",
"@opam/tablecloth-native": "0.0.6",
"@opam/yojson": "1.7.0",
"ocaml": "^4.4.0",
"tablecloth": "^0.0.7"
},
"devDependencies": {
"ocaml": "4.7.1004",
"refmterr": "*",
"pesy": "*",
"@opam/merlin": "*"
}
}