-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 2.62 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
{
"name": "abell-language-features",
"displayName": "Abell Language Features",
"description": "Syntax Highlighting for .abell files. Learn more about Abell at https://abelljs.org/",
"version": "1.2.2",
"publisher": "saurabh",
"author": {
"name": "saurabhdaware"
},
"icon": "images/logo-512.png",
"galleryBanner": {
"color": "#E7EBFD"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/abelljs/vscode-abell-language-features.git"
},
"homepage": "https://github.com/abelljs/vscode-abell-language-features/blob/main/README.md",
"bugs": {
"url": "https://github.com/abelljs/vscode-abell-language-features/issues",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.64.0"
},
"categories": [
"Programming Languages",
"Snippets"
],
"activationEvents": [
"onLanguage:abell"
],
"main": "./client/out/extension",
"browser": "./client/extension.web",
"contributes": {
"languages": [
{
"id": "abell",
"aliases": [
"Abell",
"abell"
],
"extensions": [
".abell"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"path": "./syntaxes/html-injections.json",
"scopeName": "abell-in-html.injection",
"injectTo": [
"text.html.abell"
]
},
{
"path": "./syntaxes/js-injections.json",
"scopeName": "html-in-js.injection",
"injectTo": [
"text.html.abell"
]
},
{
"language": "abell",
"scopeName": "text.html.abell",
"path": "./syntaxes/abell.tmLanguage.json",
"embeddedLanguages": {
"meta.embedded.block.javascript": "javascript"
}
}
],
"htmlLanguageParticipants": [
{
"languageId": "abell",
"autoInsert": true
}
],
"snippets": [
{
"language": "abell",
"path": "./snippets/snippets.json"
}
]
},
"scripts": {
"vscode:prepublish": "cd client && npm install && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh",
"open-in-browser": "vscode-test-web --extensionDevelopmentPath=."
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^12.12.0",
"@typescript-eslint/eslint-plugin": "^3.0.2",
"@typescript-eslint/parser": "^3.0.2",
"eslint": "^7.1.0",
"typescript": "^3.9.4",
"@vscode/test-web": "*"
}
}