-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
116 lines (116 loc) · 2.5 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
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "ocaml-merlin",
"main": "./lib/main",
"version": "0.14.7",
"description": "Linting, autocompletion, type checking, refactoring and code navigation for Ocaml/Reason with Merlin.",
"keywords": [
"linter",
"autocomplete",
"goto",
"ocaml",
"merlin"
],
"activationHooks": [
"language-ocaml:grammar-used",
"language-ocaml-fix:grammar-used",
"language-reason:grammar-used",
"nuclide-language-reason:grammar-used"
],
"repository": "https://github.com/atom-ocaml/ocaml-merlin",
"license": "MIT",
"engines": {
"atom": ">=1.14.0 <2.0.0"
},
"dependencies": {
"etch": "^0.9.5"
},
"providedServices": {
"linter": {
"versions": {
"2.0.0": "provideLinter"
}
},
"autocomplete.provider": {
"versions": {
"2.0.0": "provideAutocomplete"
}
}
},
"consumedServices": {
"ocamlIndent": {
"versions": {
"^0.3.0": "consumeIndent"
}
}
},
"configSchema": {
"merlinPath": {
"type": "string",
"default": "ocamlmerlin",
"order": 1
},
"lintAsYouType": {
"type": "boolean",
"default": true,
"order": 2
},
"completePartialPrefixes": {
"description": "For instance, `L.ma` can get expanded to `List.map`.",
"type": "boolean",
"default": false,
"order": 3
},
"default": {
"title": "Default settings if no .merlin file is found",
"type": "object",
"order": 4,
"properties": {
"flags": {
"title": "Flags",
"type": "array",
"default": [],
"order": 1,
"items": {
"type": "string"
}
},
"packages": {
"title": "Packages",
"type": "array",
"default": [],
"order": 2,
"items": {
"type": "string"
}
},
"extensions": {
"title": "Extensions",
"type": "array",
"default": [],
"order": 3,
"items": {
"type": "string"
}
},
"sourcePaths": {
"title": "Source Paths",
"type": "array",
"default": [],
"order": 4,
"items": {
"type": "string"
}
},
"buildPaths": {
"title": "Build Paths",
"type": "array",
"default": [],
"order": 5,
"items": {
"type": "string"
}
}
}
}
}
}