-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
111 lines (111 loc) · 2.76 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
{
"name": "regularjs",
"displayName": "Regularjs",
"description": "VSCode extension for Regularjs",
"version": "0.0.18",
"author": "Hsiao Siyuan <[email protected]>",
"publisher": "hsiaosiyuan",
"icon": "assets/regularjs.png",
"repository": {
"type": "git",
"url": "https://github.com/hsiaosiyuan0/vscode-regularjs.git"
},
"keywords": [
"regular",
"regularjs"
],
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"activationEvents": [
"*",
"onLanguage:regularjs",
"onLanguage:javascript"
],
"main": "./out/client/extension.js",
"contributes": {
"languages": [
{
"id": "regularjs",
"aliases": [
"Regularjs"
],
"extensions": [
".rgl"
],
"configuration": "./languages/regularjs-language-configuration.json"
},
{
"id": "regularjs-html",
"aliases": [
"Regularjs-html"
],
"configuration": "./languages/regularjs-html-language-configuration.json"
}
],
"grammars": [
{
"language": "regularjs",
"scopeName": "source.regularjs",
"path": "./syntaxes/regularjs.tmLanguage.json"
},
{
"language": "regularjs-html",
"scopeName": "text.html.regularjs-html",
"path": "./syntaxes/regularjs-html.tmLanguage.json",
"embeddedLanguages": {
"source.js": "javascript"
}
},
{
"injectTo": [
"source.js",
"source.ts",
"source.jsx",
"source.js.jsx",
"source.tsx"
],
"scopeName": "regularjs-injection",
"path": "./syntaxes/regularjs-injection.tmLanguage.json",
"embeddedLanguages": {
"source.css.scss": "css",
"meta.embedded.line.ts": "typescript"
}
}
],
"keybindings": {
"command": "regularjs.expandEmmet",
"key": "tab",
"when": "editorTextFocus"
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"build:grammar": "tsc -p ./ && node out/scripts/build_grammar.js",
"compile": "tsc -p ./ && npm run build:grammar",
"watch": "npm run build:grammar && tsc -w -p ./",
"pretest": "npm run compile",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.1.1",
"@types/js-yaml": "^3.12.1",
"@types/mocha": "^5.2.6",
"@types/node": "^10.17.5",
"@types/vscode": "^1.40.0",
"glob": "^7.1.6",
"js-yaml": "^3.13.1",
"mocha": "^6.1.4",
"tslint": "^5.20.1",
"typescript": "^3.7.2",
"vscode-test": "^1.2.3"
},
"dependencies": {
"emmet": "^2.0.0-rc.13",
"regularjs-beautify-core": "^0.0.8",
"regularjs-beautify-dozen": "^0.0.12"
}
}