-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.49 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
{
"name": "vscode-pegjs-live",
"displayName": "PEG.js Live",
"description": "Live preview PEG.js Grammars.",
"keywords": ["pegjs", "peg", "parser"],
"version": "0.0.1",
"publisher": "joeandaverde",
"engines": {
"vscode": "^1.29.0"
},
"repository": {
"type": "git",
"url": "https://github.com/joeandaverde/vscode-pegjs-live"
},
"bugs": {
"url": "https://github.com/joeandaverde/vscode-pegjs-live/issues"
},
"license": "MIT",
"categories": [
"Debuggers",
"Programming Languages"
],
"galleryBanner": {
"color": "#234d6b",
"theme": "light"
},
"activationEvents": [
"onCommand:editor.pegjsLive",
"onCommand:editor.pegjsLiveFromRule"
],
"main": "./dist/extension",
"contributes": {
"commands": [
{
"command": "editor.pegjsLive",
"title": "PEG.js Live"
},
{
"command": "editor.pegjsLiveFromRule",
"title": "PEG.js Live from rule under cursor"
}
]
},
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"devDependencies": {
"typescript": "^2.6.1",
"vscode": "^1.1.21",
"@types/node": "^8.10.25"
},
"dependencies": {
"pegjs": "^0.10.0"
}
}