-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.81 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": "syntax-highlighting-scopes-showroom",
"displayName": "Syntax Highlighting Scopes Showroom",
"description": "Highlights syntax scopes to simplify syntax highlighting extensions development",
"version": "1.0.0",
"publisher": "baleiko",
"author": {
"name": "Valerii Baleiko",
"email": "baleyko@gmail.com"
},
"license": "MIT",
"bugs": "https://github.com/baleyko/syntax-highlighting-scopes-showroom/issues",
"homepage": "https://github.com/baleyko/syntax-highlighting-scopes-showroom#README.md",
"repository": {
"type": "git",
"url": "https://github.com/baleyko/syntax-highlighting-scopes-showroom.git"
},
"categories": [
"Programming Languages"
],
"keywords": [
"syntax",
"highlighting",
"scopes"
],
"engines": {
"vscode": "^1.36.0",
"atom": "^1.42.0"
},
"main": "./extension.js",
"activationEvents": [
"*"
],
"contributes": {
"menus": {
"commandPalette": [
{
"command": "syntax-highlighting-scopes-showroom:show-all"
}
]
},
"commands": [
{
"command": "syntax-highlighting-scopes-showroom:show-all",
"title": "Show All Scopes",
"category": "Syntax Highlighting Scopes Showroom"
}
],
"languages": [
{
"id": "Syntax Highlighting Scopes Showroom",
"extensions": [
"SyntaxScopes"
],
"configuration": "./language-configuration.json"
}
],
"grammars": [
{
"language": "Syntax Highlighting Scopes Showroom",
"scopeName": "source.syntax-scopes",
"path": "./grammars/SyntaxScopes.json"
}
]
},
"devDependencies": {
"jsonlint": "1.6.3",
"markdownlint-cli": "0.19.0",
"yaml-lint": "1.2.4",
"eslint": "6.8.0",
"prettier": "1.19.1"
},
"scripts": {
"rebuild": "yarn run build:json && yarn run build:sublime-syntax && yarn run build:spec && yarn run build:syntax_test",
"build:json": "cat SyntaxScopes | bin/to-json > grammars/SyntaxScopes.json",
"build:sublime-syntax": "cat SyntaxScopes | bin/to-sublime-syntax > SyntaxScopes.sublime-syntax",
"build:spec": "cat SyntaxScopes | bin/to-spec > test/SyntaxScopes-spec.js",
"build:syntax_test": "cat SyntaxScopes | bin/to-syntax_test > test/syntax_test.SyntaxScopes",
"ci:lint": "yarn run lint:yaml && yarn run lint:json && yarn run lint:markdown && yarn run lint:js",
"lint:yaml": "yarn run yamllint SyntaxScopes.sublime-syntax",
"lint:json": "for file in package.json messages.json .eslintrc .prettierrc menus/show-all-scopes.json language-configuration.json .vscode/launch.json grammars/SyntaxScopes.json; do yarn run jsonlint -q $file; done",
"lint:markdown": "yarn run markdownlint *.md",
"lint:js": "eslint bin/* extension.js",
"fix:js": "prettier --write bin/* extension.js"
}
}