forked from OCamlPro/superbol-studio-oss
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 1.99 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
{
"name": "superbol",
"displayName": "Superbol COBOL",
"description": "Provides a COBOL mode in VSCode based on Superbol",
"license": "MIT",
"version": "0.1.0",
"publisher": "ocamlpro",
"repository": {
"type": "git",
"url": "https://github.com/OCamlPro/superbol-vscode-extension"
},
"homepage": "https://ocamlpro.com/cobol",
"author": {
"name": "OCamlPro SAS",
"email": "[email protected]"
},
"keywords": [
"cobol",
"gnucobol"
],
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Formatters",
"Programming Languages",
"Linters",
"Snippets",
"Other"
],
"activationEvents": [
"onLanguage:cobol"
],
"contributes": {
"languages": [
{
"id": "cobol",
"aliases": [
"COBOL"
],
"filenamePatterns": [
"*.cbl",
"*.cob"
]
}
],
"configuration": {
"title": "Superbol COBOL",
"properties": {
"superbol.globalFormatTakesSelection": {
"type": "boolean",
"default": false,
"description": "If something is selected, only format the selection"
},
"superbol.path": {
"type": "string",
"default": "",
"description": "Path to the `superbol` command"
}
}
}
},
"main": "./dist/superbol_vscode_extension.bc.js",
"scripts": {
"compile": "make compile",
"package": "vsce package --out superbol-vscode-extension.vsix --yarn",
"deploy:vsce": "vsce publish --packagePath superbol-vscode-extension.vsix --yarn",
"deploy:ovsx": "ovsx publish --yarn"
},
"dependencies": {
"polka": "^1.0.0-next.22",
"sirv": "^2.0.2",
"vscode-languageclient": "8.0.2"
},
"devDependencies": {
"@types/vscode": "1.64.0",
"esbuild": "^0.15.16",
"fs-extra": "10.0.1",
"mocha": "9.2.2",
"npm-run-all": "4.1.5",
"ovsx": "0.1.0-next.97d460c",
"prettier": "^2.5.1",
"vsce": "^2.15.0",
"vscode-test": "1.6.1"
}
}