-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
93 lines (93 loc) · 2.5 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
{
"name": "asn1",
"displayName": "ASN.1",
"description": "ASN.1 syntax, snippets, formatting, and more.",
"version": "0.5.3",
"publisher": "wildboar",
"license": "MIT",
"engines": {
"vscode": "^1.26.0"
},
"categories": [
"Formatters",
"Programming Languages",
"Snippets"
],
"contributes": {
"configuration": {
"type": "object",
"title": "ASN.1 Configuration",
"properties": {
"asn1.ignoreIntegerSize": {
"type": "boolean",
"default": false,
"description": "Whether or not to ignore the warning when using INTEGER literals that exceed the 32-bit signed extrema."
}
}
},
"languages": [
{
"id": "asn1",
"aliases": [
"ASN.1",
"asn1"
],
"extensions": [
".asn1",
".asn"
],
"configuration": "./config/asn1.language-config.json"
}
],
"grammars": [
{
"language": "asn1",
"scopeName": "source.asn1",
"path": "./config/asn1.tmLanguage.json"
},
{
"scopeName": "markdown.asn1.codeblock",
"path": "./config/asn1.codeblock.json",
"injectTo": [
"text.html.markdown"
],
"embeddedLanguages": {
"meta.embedded.block.asn": "asn1"
}
}
],
"snippets": [
{
"language": "asn1",
"path": "./config/asn1.code-snippets"
}
]
},
"main": "./dist/index.js",
"activationEvents": [
"onLanguage:asn1"
],
"dependencies": {
"event-stream": "^3.3.5"
},
"scripts": {
"pkgvars": "node ./node_modules/vscode/bin/install",
"postinstall": "node ./node_modules/vscode/bin/install"
},
"repository": {
"type": "git",
"url": "https://github.com/JonathanWilbur/vscode-asn1.git"
},
"keywords": [
"ASN",
"ASN.1",
"BER",
"DER",
"X.680"
],
"icon": "images/Icon512.png",
"homepage": "https://github.com/JonathanWilbur/vscode-asn1/README.md",
"devDependencies": {
"vscode": "^1.1.34"
}
}