-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
66 lines (66 loc) · 1.61 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
{
"name": "web-accessibility",
"displayName": "Web Accessibility",
"description": "Audit Web Accessibility issues in Visual Studio Code",
"version": "0.2.84",
"publisher": "MaxvanderSchee",
"license": "MIT",
"repository": "https://github.com/mvdschee/web-accessibility",
"icon": "a11y-icon.png",
"engines": {
"vscode": "^1.25.0"
},
"categories": [
"Linters"
],
"keywords": [
"web accessibility",
"a11y",
"wai-aria",
"wai",
"accessibility",
"audit"
],
"activationEvents": [
"onLanguage:html",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact",
"onLanguage:vue-html",
"onLanguage:vue",
"onLanguage:handlebars"
],
"main": "./client/out/extension",
"contributes": {
"configuration": {
"type": "object",
"title": "Web Accessibility",
"properties": {
"webAccessibility.maxNumberOfProblems": {
"scope": "resource",
"type": "number",
"default": 100,
"description": "Controls the maximum number of problems produced by the server."
},
"webAccessibility.semanticExclude": {
"scope": "resource",
"type": "boolean",
"default": true,
"description": "Controls if non-semantic HTML is going to produce problems by the server."
}
}
}
},
"scripts": {
"vscode:prepublish": "cd client && npm run update-vscode && cd .. && npm run compile",
"compile": "tsc -b",
"watch": "tsc -b -w",
"postinstall": "cd client && npm install && cd ../server && npm install && cd ..",
"test": "sh ./scripts/e2e.sh"
},
"devDependencies": {
"@types/mocha": "^5.2.7",
"@types/node": "^8.10.64",
"tslint": "^5.20.1",
"typescript": "^3.9.7"
}
}