-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 1.87 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
{
"name": "simple-rst",
"displayName": "reStructuredText Syntax highlighting",
"description": "Syntax highlighting and document symbols for reStructuredText",
"version": "1.5.4",
"engines": {
"vscode": "^1.40.0"
},
"categories": [
"Programming Languages"
],
"license": "MIT",
"activationEvents": [
"onLanguage:restructuredtext"
],
"repository": {
"type": "github",
"url": "https://github.com/trond-snekvik/vscode-rst"
},
"author": {
"name": "Trond Snekvik",
"url": "https://github.com/trond-snekvik",
"email": "trond.snekvik@gmail.com"
},
"icon": "media/icon.png",
"publisher": "trond-snekvik",
"main": "./out/extension.js",
"contributes": {
"languages": [
{
"id": "restructuredtext",
"aliases": [
"reStructuredText"
],
"configuration": "./rst-configuration.json",
"extensions": [
".rst"
]
}
],
"grammars": [
{
"language": "restructuredtext",
"scopeName": "source.rst",
"path": "./syntaxes/rst.tmLanguage.json"
}
]
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts,json",
"watch": "tsc -watch -p ./",
"test": "node ./scripts/validate_schema.js",
"test-grammar": "vscode-tmgrammar-test -c -s source.rst -g syntaxes/rst.tmLanguage.json -t \"syntaxes/**/*.rst\""
},
"devDependencies": {
"@types/compare-versions": "^3.3.0",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/vscode": "^1.40.0",
"@typescript-eslint/eslint-plugin": "^3.8.0",
"@typescript-eslint/parser": "^3.8.0",
"eslint": "^7.6.0",
"glob": "^7.1.6",
"jsonschema": "^1.4.0",
"mocha": "^8.0.1",
"typescript": "^3.8.3",
"vscode-test": "^1.4.0",
"vscode-tmgrammar-test": "^0.0.11"
},
"dependencies": {
"compare-versions": "^3.6.0"
}
}