forked from mrmlnc/vscode-csscomb
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.14 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.14 KB
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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "vscode-csscomb",
"displayName": "CSScomb",
"description": "Coding style formatter for CSS, Less, SCSS or Sass",
"version": "5.2.0",
"publisher": "mrmlnc",
"license": "MIT",
"engines": {
"vscode": "^1.15.0"
},
"icon": "icon.png",
"author": {
"name": "Denis Malinochkin",
"url": "www.canonium.com"
},
"homepage": "https://github.com/mrmlnc/vscode-csscomb/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/mrmlnc/vscode-csscomb"
},
"keywords": [
"CSScomb",
"CSS",
"Less",
"Sass",
"SCSS"
],
"categories": [
"Formatters"
],
"activationEvents": [
"onCommand:csscomb.execute",
"onLanguage:css",
"onLanguage:less",
"onLanguage:sass",
"onLanguage:sass-indented",
"onLanguage:scss"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "csscomb.execute",
"title": "CSSComb: Format styles"
}
],
"configuration": {
"type": "object",
"title": "CSScomb configuration",
"properties": {
"csscomb.preset": {
"type": [
"object",
"string"
],
"default": {},
"description": "One of the predefined configs (csscomb, yandex, zen) or custom config (object) or path to config.",
"scope": "resource"
},
"csscomb.ignoreFilesOnSave": {
"type": "array",
"default": [],
"description": "An optional array of glob-patterns to ignore files on save.",
"scope": "resource"
},
"csscomb.supportEmbeddedStyles": {
"type": "boolean",
"default": true,
"description": "Support embedded CSS into HTML.",
"scope": "resource"
},
"csscomb.formatOnSave": {
"type": "boolean",
"default": false,
"description": "Auto format on save.",
"scope": "resource"
},
"csscomb.syntaxAssociations": {
"type": "object",
"default": {},
"description": "Configuration of syntax associations.",
"scope": "resource"
}
}
},
"jsonValidation": [
{
"fileMatch": "*csscomb.json",
"url": "http://json.schemastore.org/csscomb"
}
]
},
"devDependencies": {
"@types/micromatch": "^2.3.29",
"@types/mocha": "^2.2.43",
"@types/node": "^8.0.31",
"@types/proxyquire": "^1.3.28",
"mocha": "^4.0.0",
"proxyquire": "^1.8.0",
"rimraf": "^2.6.2",
"tslint": "^5.7.0",
"tslint-config-xo": "^1.3.0",
"typescript": "^2.5.3"
},
"dependencies": {
"config-profiler": "^2.0.3",
"csscomb": "^4.2.0",
"micromatch": "^3.1.0",
"tslib": "^1.7.1",
"vscode": "^1.1.5"
},
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"clean": "rimraf out",
"lint": "tslint src/**/*.ts -p .",
"compile": "tsc",
"test": "mocha out/{,**/}*.spec.js -s 0",
"build": "npm run clean && npm run lint && npm run compile && npm test",
"watch": "npm run clean && npm run lint && npm run compile -- --sourceMap --watch"
}
}