-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
65 lines (65 loc) · 1.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
{
"name": "vscode-csstree",
"displayName": "CSSTree validator",
"description": "Validate CSS according to W3C specs and browser implementations",
"version": "1.2.1",
"keywords": [
"css",
"csstree",
"lint",
"validator",
"w3c"
],
"contributors": [
"Sergey Melyukov <[email protected]>"
],
"license": "MIT",
"publisher": "smelukov",
"engines": {
"vscode": "^1.4.0"
},
"categories": [
"Linters",
"Programming Languages"
],
"activationEvents": [
"onLanguage:css"
],
"homepage": "https://github.com/csstree/vscode-plugin",
"repository": "https://github.com/csstree/vscode-plugin",
"bugs": "https://github.com/csstree/vscode-plugin/issues",
"main": "./out/src/extension.js",
"galleryBanner": {
"theme": "dark",
"color": "#333"
},
"contributes": {
"configuration": {
"type": "object",
"title": "CSSTree validtor configuration",
"properties": {
"csstree.enable": {
"type": "boolean",
"default": true,
"description": "Enable CSSTree validation for CSS files."
}
}
}
},
"scripts": {
"typecheck": "tsc --noEmit src/*",
"watch": "tsc -watch -p ./",
"compile": "tsc -p ./",
"vscode:prepublish": "tsc -p ./"
},
"devDependencies": {
"@types/node": "^6.0.40",
"typescript": "^2.4.2",
"vscode": "^1.1.18"
},
"dependencies": {
"csstree-validator": "~4.0.1",
"vscode-languageclient": "~2.6.0",
"vscode-languageserver": "~2.6.0"
}
}