-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.31 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
{
"name": "brilliant",
"displayName": "Bri11iant",
"description": "A Scaffolding Tool for A11Y Web Development",
"version": "0.2.2",
"publisher": "inclusive-tech",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/InclusiveTechNU/bri11iant"
},
"engines": {
"vscode": "^1.41.0"
},
"categories": [
"Linters"
],
"keywords": [
"a11y",
"accessibility",
"language-extension"
],
"activationEvents": [
"onLanguage:html"
],
"main": "./client/out/extension",
"capabilities": {
"codeActionProvider": "true"
},
"scripts": {
"compile": "tsc -b",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"publish": "vsce package && vsce publish",
"start": "tsc -b",
"test": "jest",
"vscode:prepublish": "npm run compile",
"watch": "tsc -b -w"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.52",
"eslint": ">=4.18.2",
"jest": "^25.4.0",
"ts-jest": "^25.4.0",
"typelint": "^1.0.2",
"typescript": "^3.7.5"
},
"contributes": {
"configuration": {
"type": "object",
"title": "Bri11iant",
"properties": {
"bri11iant.altText": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Controls whether Bri11iant attempts to generate missing alt text. (Deprecated)"
},
"bri11iant.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 500,
"maximum": 1000,
"description": "Controls the maximum number of problems produced by the server."
},
"bri11iant.mode": {
"type": "string",
"default": "Standard",
"enum": ["Standard", "Education"],
"enumDescriptions": [
"The standard version of Bri11iant, for use by web developers.",
"A modified version of Bri11iant for use by educators and students, tailored to teach web accessibility concepts."
]
},
"bri11iant.sendDiagnostics": {
"scope": "resource",
"type": "boolean",
"default": false,
"description": "Controls whether diagnostics are recorded for research purposes."
},
"bri11iant.userId": {
"scope": "resource",
"type": "string",
"default": "",
"maxLength": 10,
"description": "Participant id for research studies involving Bri11iant."
}
}
}
}
}