-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
115 lines (115 loc) · 2.33 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
{
"name": "pml",
"displayName": "PML",
"description": "PML Language Highlighter and Snippets",
"version": "0.2.0",
"publisher": "angelincalu",
"repository": {
"url": "https://github.com/x10sv/pml"
},
"homepage": "https://github.com/x10sv/pml",
"bugs": {
"url": "https://github.com/x10sv/pml/issues"
},
"engines": {
"vscode": "^1.21.1"
},
"categories": [
"Programming Languages",
"Snippets",
"Other"
],
"activationEvents": [
"*",
"onLanguage:pml",
"onCommand:extension.pmlUglify"
],
"main": "./out/extension",
"contributes": {
"languages": [
{
"id": "pml",
"aliases": [
"Programmable Macro Language",
"pml"
],
"extensions": [
".pmlfrm",
".pmlmac",
".pmlfnc",
".pmlobj",
".pmldat",
".pmlcmd",
".mac"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "pml",
"scopeName": "source.pml",
"path": "./syntaxes/pml.tmLanguage.json"
}
],
"snippets": [
{
"language": "pml",
"path": "./snippets/pmlformg.json"
},
{
"language": "pml",
"path": "./snippets/pmlform.json"
},
{
"language": "pml",
"path": "./snippets/pmlmet.json"
},
{
"language": "pml",
"path": "./snippets/pmlobj.json"
},
{
"language": "pml",
"path": "./snippets/pmlcmd.json"
},
{
"language": "pml",
"path": "./snippets/pmlfunc.json"
},
{
"language": "pml",
"path": "./snippets/pmlbut.json"
},
{
"language": "pml",
"path": "./snippets/helpers.json"
}
],
"commands": [
{
"command": "extension.pmlUglify",
"title": "PML Uglify"
}
],
"breakpoints": [
{
"language": "pml"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "tslint ./src/*.ts",
"watch": "tsc -watch -p ./"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.60",
"@types/vscode": "^1.29.1",
"eslint": "^5.16.0",
"tslint": "^5.20.1",
"typescript": "^3.8.3"
}
}