-
Notifications
You must be signed in to change notification settings - Fork 84
/
Copy pathpackage.json
41 lines (41 loc) · 1.26 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
{
"name": "reason-language-server",
"version": "1.0.0",
"scripts": {
"cp-test": "cp _build/install/default/bin/ExamplesTests ExamplesTests.exe",
"package": "esy build && esy cp \"_build/default/bin/Bin.exe\" editor-extensions/vscode/bin.native",
"zip": "./release.sh",
"check-self-definitions": "fd -E examples '.*\\.re$' | xargs ./bin.exe check -q -d .",
"alltests": "dune exec AllTests",
"vsce": "cd editor-extensions/vscode && vsce package",
"reprocess-ocaml": "(cd process_ocaml; ./build.sh); esy",
"symlink": "esy ln -s '_build/install/default/bin/Bin' bin.exe",
"cp-bin": "cp _build/install/default/bin/Bin bin.exe"
},
"keywords": [
"Reason",
"lsp",
"IDE"
],
"repository": {
"url": "jaredly/reason-language-server",
"type": "git"
},
"description": "A pure-reason implementation of a language server",
"author": "Jared Forsyth",
"license": "ISC",
"esy": {
"build": "dune build -p #{self.name}",
"buildsInSource": "_build"
},
"dependencies": {
"@opam/dune": "*",
"@opam/reason": ">= 3.5.0",
"@opam/ocaml-migrate-parsetree": ">= 1.3.1",
"@opam/ppx_tools_versioned": "*",
"@opam/ppxlib": "*",
"@opam/stdlib-shims": "*",
"rex-json": "*",
"ocaml": "~4.8.1000"
}
}