-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
46 lines (46 loc) · 1002 Bytes
/
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
{
"name": "@jolie/languageserver",
"description": "An implementation of the Language Server Protocol for Jolie language.",
"collaborators": [
{
"name": "Eros Fabrici"
},
{
"name": "Fabrizio Montesi",
"email": "[email protected]",
"url": "https://www.fabriziomontesi.com/"
},
{
"name": "Vicki Mixen",
"email": "[email protected]"
},
{
"name": "Narongrit Unwerawattana"
}
],
"version": "2.0.3",
"license": "MIT",
"keywords": [
"jolie",
"microservices"
],
"scripts": {
"jolive": "npx nodemon --exec jolie ./launcher.ol 9743",
"clean": "rm ./hs_err_pid*",
"postinstall": "npx --package=@jolie/jpm -- jpm hooks:postinstall",
"prepack": "npx --package=@jolie/jpm -- jpm hooks:prepack"
},
"bin": {
"joliels": "./launcher.ol"
},
"files": [
"lib",
".gitignore",
"launcher.ol",
"lsp.ol",
"main.ol",
"README.md",
"internal",
"inspectorJavaService"
]
}