-
Notifications
You must be signed in to change notification settings - Fork 24
/
package.json
47 lines (47 loc) · 1.43 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
{
"name": "flex",
"version": "1.2.3",
"description": "Implementation CSS layout using pure Reason - powered by css-layout project.",
"repository": {
"type": "git",
"url": "https://github.com/jordwalke/flex.git"
},
"keywords": [
"css",
"flex",
"flexbox",
"layout",
"reason",
"reasonml",
"ocaml"
],
"esy": {
"build": "dune build -p #{self.name}",
"buildDev": "refmterr dune build -j1 --no-buffer --verbose",
"release": {
"bin": []
}
},
"dependencies": {
"ocaml": ">=4.6.1",
"@opam/dune": "^2.0.0",
"@esy-ocaml/reason": "^3.0.0"
},
"devDependencies": {
"@opam/merlin": "*",
"@opam/js_of_ocaml": "*",
"@opam/js_of_ocaml-ppx": "*",
"@opam/js_of_ocaml-lwt": "*",
"refmterr": "*",
"@opam/odoc": "*",
"ocaml": "~4.7.0"
},
"TODO": "Add back the jsoo targets and some scripts to run the benchmarks in various JS VMs.",
"scripts": {
"doc": "refmterr dune build --profile=release @doc",
"clean": "dune clean",
"format": "dune build @fmt --auto-promote",
"test": "esy b dune exec ./src/layout-test-fixed-encoding/LayoutTestFixedEncoding.exe && esy b dune exec ./src/measure-test-fixed-encoding/MeasureTestFixedEncoding.exe",
"postinstall": "Welcome to Flex! You have installed Flex with npm, but Flex is a native Reason library. Use 'esy' to manage native Reason projects. See the README instructions - it's really easy."
}
}