This repository has been archived by the owner on Jun 21, 2021. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
108 lines (108 loc) · 2.8 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "vscode-stylefmt",
"displayName": "stylefmt",
"description": "Modern CSS Formatter",
"version": "2.6.2",
"publisher": "mrmlnc",
"license": "MIT",
"engines": {
"vscode": "^1.16.0"
},
"icon": "icon.png",
"homepage": "https://github.com/mrmlnc/vscode-stylefmt/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/mrmlnc/vscode-stylefmt"
},
"keywords": [
"css",
"SCSS",
"format",
"style",
"stylefmt"
],
"categories": [
"Formatters"
],
"activationEvents": [
"onCommand:stylefmt.execute",
"onLanguage:css",
"onLanguage:postcss",
"onLanguage:less",
"onLanguage:scss",
"onLanguage:sugarss"
],
"main": "./out/extension",
"contributes": {
"commands": [
{
"command": "stylefmt.execute",
"title": "stylefmt: Format CSS"
}
],
"configuration": {
"type": "object",
"title": "stylefmt configuration",
"properties": {
"stylefmt.configBasedir": {
"type": "string",
"default": "",
"description": "Base working directory; useful for stylelint extends parameter."
},
"stylefmt.config": {
"type": [
"string",
"object"
],
"default": "",
"description": "Config object for stylelint or path to a stylelint config file."
},
"stylefmt.useStylelintConfigOverrides": {
"type": "boolean",
"default": false,
"description": "Overrides rules using stylelint plugin setting 'stylelint.configOverrides'."
},
"stylefmt.showErrorMessages": {
"type": "boolean",
"default": true,
"description": "Show error messages or not. Will be automatically set to false if 'editor.formatOnSave' is enabled."
}
}
},
"jsonValidation": [
{
"fileMatch": "**/.stylelintrc*",
"url": "http://json.schemastore.org/stylelintrc.json"
}
]
},
"devDependencies": {
"@types/extend": "3.0.1",
"@types/mocha": "7.0.2",
"@types/node": "8.0.17",
"@types/proxyquire": "1.3.28",
"@types/rimraf": "3.0.0",
"@types/vscode": "1.16.0",
"mocha": "7.1.2",
"proxyquire": "2.1.3",
"rimraf": "3.0.2",
"tslint": "5.5.0",
"tslint-config-xo": "1.3.0",
"typescript": "2.4.2"
},
"dependencies": {
"extend": "3.0.1",
"postcss": "6.0.8",
"postcss-scss": "1.0.2",
"stylefmt": "6.0.3",
"sugarss": "2.0.0"
},
"scripts": {
"clean": "rimraf out",
"lint": "tslint src/**/*.ts",
"compile": "tsc",
"test": "mocha out/**/*.spec.js -s 0",
"build": "npm run clean && npm run lint && npm run compile && npm t",
"watch": "npm run clean && npm run lint && npm run compile -- --sourceMap --watch"
}
}