forked from kevinchee/pronto-4gl-vscode-lang
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.27 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": "pronto-4gl-language-definition",
"displayName": "Pronto 4GL Language Definition",
"description": "Pronto 4GL Language Definition for vscode",
"version": "0.4.3",
"publisher": "pronto-4gl-vscode-lang",
"homepage": "https://github.com/kevinchee/pronto-4gl-vscode-lang/blob/master/README.md",
"bugs": {
"url": "https://github.com/kevinchee/pronto-4gl-vscode-lang/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/kevinchee/pronto-4gl-vscode-lang.git"
},
"engines": {
"vscode": "^1.11.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"galleryBanner": {
"color": "#C80000",
"theme": "dark"
},
"license": "See LICENSE",
"contributes": {
"snippets": [
{
"language": "spl",
"path": "./snippets/snippets.json"
}
],
"languages": [
{
"id": "spl",
"aliases": [
"Pronto 4GL",
"spl"
],
"extensions": [
".spl"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "spl",
"scopeName": "source.spl",
"path": "./syntaxes/spl.tmLanguage.json"
}
]
},
"scripts": {
"postinstall": "husky install && rm -rf .git/hooks && ln -s ../.husky .git/hooks",
"pretest": "tsc",
"test": "node out/test/runTest.js",
"release": "standard-version",
"release:major": "standard-version --release-as major",
"release:minor": "standard-version --release-as minor",
"release:patch": "standard-version --release-as patch",
"vsce": "vsce"
},
"devDependencies": {
"@commitlint/cli": "^12.1.1",
"@commitlint/config-conventional": "^12.1.1",
"@commitlint/prompt-cli": "^12.1.1",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.0.1",
"@types/vscode": "^1.11.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"eslint": "^7.25.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"glob": "^7.1.6",
"husky": "^6.0.0",
"mocha": "^8.3.2",
"standard-version": "^9.2.0",
"vsce": "^1.88.0",
"vscode-test": "^1.5.2"
}
}