-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
55 lines (55 loc) · 1.58 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
{
"name": "ocaml-language-server",
"version": "0.1.7",
"license": "Apache-2.0",
"description": "OCaml language server",
"author": {
"name": "Darin Morrison",
"email": "[email protected]",
"url": "https://github.com/freebroccolo"
},
"homepage": "https://github.com/freebroccolo/ocaml-language-server",
"repository": {
"type": "git",
"url": "git://github.com/freebroccolo/ocaml-language-server.git"
},
"bugs": {
"url": "https://github.com/freebroccolo/ocaml-language-server/issues"
},
"engines": {
"node": ">=6.9.1"
},
"scripts": {
"compile": "npm run ocamldoc:grammar:compile && tsc -watch -p ./",
"ocamldoc:grammar:compile": "mkdir -p out/src/shared/parser/ocamldoc && pegjs -o out/src/shared/parser/ocamldoc/grammar.js src/shared/parser/ocamldoc/grammar.pegjs",
"prepublish": "npm run ocamldoc:grammar:compile && tsc -p ./"
},
"main": "./out/src/server/index",
"bin": {
"ocaml-language-server": "./out/src/server/index.js"
},
"files": [
"out"
],
"devDependencies": {
"@types/async": "2.0.37",
"@types/glob": "5.0.30",
"@types/lodash": "4.14.44",
"@types/lokijs": "1.2.30",
"@types/node": "6.0.53",
"@types/pegjs": "0.10.0",
"tslint": "4.2.0",
"typescript": "2.2.0-dev.20161215"
},
"dependencies": {
"async": "2.1.4",
"glob": "7.1.1",
"lodash": "4.17.3",
"lokijs": "1.4.2",
"pegjs": "0.10.0",
"vscode-jsonrpc": "2.4.0",
"vscode-languageclient": "2.6.3",
"vscode-languageserver": "2.6.2",
"vscode-languageserver-types": "1.0.4"
}
}