This repository was archived by the owner on Oct 11, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.29 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.29 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "vscode-merlin",
"description": "VS Code Merlin Extension",
"author": "Andrey Popp <8mayday@gmail.com>",
"publisher": "andreypopp",
"license": "MIT",
"version": "0.1.0",
"repository": {
"type": "git",
"url": "https://github.com/ocaml/melrin"
},
"engines": {
"vscode": "^1.23.0"
},
"activationEvents": [
"onLanguage:reason",
"onLanguage:ocaml"
],
"main": "./src/Extension.bs.js",
"contributes": {
"commands": [
{
"command": "merlin-language-server.restart",
"title": "Restart Merlin Language Server"
}
],
"languages": [
{
"id": "reason",
"aliases": [
"Reason"
],
"extensions": [
".re",
".rei"
],
"configuration": "./language/reason.json"
},
{
"id": "ocaml",
"aliases": [
"OCaml"
],
"extensions": [
".ml",
".mli"
],
"configuration": "./language/ocaml.json"
}
],
"configuration": {
"type": "object",
"title": "Merlin configuration",
"properties": {}
},
"grammars": [
{
"language": "ocaml",
"scopeName": "source.ocaml",
"path": "./syntax/ocaml.json"
},
{
"language": "reason",
"scopeName": "source.reason",
"path": "./syntax/reason.json"
}
]
},
"scripts": {
"clean": "bsb -clean",
"build": "bsb -make-world",
"watch": "bsb -make-world -w",
"compile": "tsc -b",
"test:bsb": "node ./test/runBsbTests.js",
"test:esy": "node ./test/runEsyTests.js",
"test:unit": "jest __tests__",
"test:opam": "node ./test/runOpamTests.js",
"test": "npm run test:esy && npm run test:opam && npm run test:bsb",
"package": "vsce package",
"refmt": "find ./src ./fixtures ./__tests__ -type f -name \"*.re\" | xargs bsrefmt --in-place"
},
"devDependencies": {
"@glennsl/bs-jest": "^0.4.9",
"fs-extra": "^8.1.0",
"jest-cli": "^24.9.0",
"mocha": "^6.2.2",
"prettier": "^1.19.1",
"vsce": "^1.71.0",
"vscode": "^1.1.36",
"vscode-test": "^1.2.3"
},
"dependencies": {
"esy": "0.5.x",
"rimraf": "^3.0.0",
"semver": "^6.3.0",
"bs-platform": "^7.0.1",
"vscode-languageclient": "^5.2.1"
}
}