-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
100 lines (100 loc) · 2.92 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
{
"name": "refactor-css",
"displayName": "Refactor CSS",
"description": "Helps you identify reoccurring CSS class name combinations in your markup.",
"version": "0.4.2",
"engines": {
"vscode": "^1.30.0"
},
"categories": [
"Other"
],
"icon": "icon.png",
"keywords": [
"css",
"refactor",
"utility first css",
"class",
"classes",
"tailwind",
"tailwindcss",
"tachyons"
],
"activationEvents": [
"onLanguage:html",
"onLanguage:jade",
"onLanguage:razor",
"onLanguage:php",
"onLanguage:blade",
"onLanguage:twig",
"onLanguage:markdown",
"onLanguage:erb",
"onLanguage:handlebars",
"onLanguage:ejs",
"onLanguage:nunjucks",
"onLanguage:haml",
"onLanguage:leaf",
"onLanguage:vue"
],
"main": "./out/extension",
"contributes": {
"configuration": [
{
"properties": {
"refactor-css.highlightMinimumClasses": {
"type": "number",
"default": 3,
"description": "Minimum number of unique classes per HTML tag for highlighting."
},
"refactor-css.highlightMinimumOccurrences": {
"type": "number",
"default": 3,
"description": "Minimum number of occurrences of class combination in workspace for highlighting."
},
"refactor-css.include": {
"type": "string",
"default": "**/*.{htm,html,vue,hbs,handlebars,php,jade,twig,md,erb,ejs,nunjucks,haml,leaf}",
"description": "A glob pattern that defines files and folders to search for. The glob pattern will be matched against the paths of resulting matches relative to their workspace."
},
"refactor-css.exclude": {
"type": "string",
"default": "**/{node_modules,bower_components,dist}/**",
"description": "A glob pattern that defines files and folders to exclude. The glob pattern will be matched against the file paths of resulting matches relative to their workspace."
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.39",
"prettier": "^1.16.4",
"tslint": "^5.12.1",
"tslint-config-airbnb-base": "^0.2.0",
"tslint-config-prettier": "^1.18.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.3.3",
"vscode": "^1.1.29"
},
"license": "MIT",
"publisher": "urbantrout",
"author": {
"name": "Harald Atteneder",
"email": "harald@urbantrout.io",
"url": "https://urbantrout.io"
},
"repository": {
"type": "git",
"url": "/~https://github.com/urbantrout/refactor-css.git"
},
"dependencies": {
"line-column": "^1.0.2"
}
}