forked from adamwalzer/vscode-scss-lint
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
91 lines (91 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
{
"name": "scss-lint",
"displayName": "scss-lint",
"version": "0.1.10",
"icon": "images/icon.png",
"description": "a scss-lint extension for vscode",
"publisher": "adamwalzer",
"author": {
"name": "Adam Walzer"
},
"repository": {
"type": "git",
"url": "https://github.com/adamwalzer/vscode-scss-lint"
},
"engines": {
"vscode": "^1.5.0"
},
"categories": [
"Linters"
],
"activationEvents": [
"onLanguage:css",
"onLanguage:scss"
],
"license": "MIT",
"main": "./out/src/extension",
"scripts": {
"vscode:prepublish": "tsc -p ./",
"compile": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "node ./node_modules/vscode/bin/test"
},
"contributes": {
"configuration": {
"type": "object",
"title": "scss-lint configuration",
"properties": {
"scssLint.showHighlights": {
"type": "boolean",
"default": false,
"description": "Set to true to highlight the errors and warnings"
},
"scssLint.runOnTextChange": {
"type": "boolean",
"default": false,
"description": "Determines if this extension should run when text changes on a document"
},
"scssLint.errorBackgroundColor": {
"type": "string",
"default": "rgba(200, 0, 0, .8)",
"description": "The color that will highlight errors"
},
"scssLint.warningBackgroundColor": {
"type": "string",
"default": "rgba(200, 120, 0, .8)",
"description": "The color that will highlight warnings"
},
"scssLint.languages": {
"type": "array",
"default": [
"scss"
],
"description": "The languages this app will work for"
},
"scssLint.statusBarText": {
"type": "string",
"default": "`$(telescope) scss-lint ${errors.length} $(x) ${warnings.length} $(alert)`",
"description": "The display text in the status bar"
},
"scssLint.configDir": {
"type": "string",
"default": "",
"description": "The directory where to find the .scss-lint.yml file"
}
}
}
},
"dependencies": {
"find-parent-dir": "^0.3.0",
"glob": "^7.1.2",
"path": "^0.12.7",
"vscode-uri": "^2.0.3"
},
"devDependencies": {
"@types/mocha": "^2.2.32",
"@types/node": "^6.0.40",
"mocha": "^2.3.3",
"typescript": "^2.7.1",
"vscode": "^1.0.0"
}
}