-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
70 lines (70 loc) · 2.16 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
{
"name": "js-auto-backticks",
"displayName": "Javascript Auto Backticks",
"description": "Automatically converts single or double quotes to backticks when needed.",
"icon": "images/icon.png",
"galleryBanner": {
"color": "#CE9178",
"theme": "dark"
},
"publisher": "chamboug",
"version": "1.2.0",
"repository": "https://github.com/chamboug/vscode-extension-js-auto-backticks",
"engines": {
"vscode": "^1.43.0"
},
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:javascript",
"onLanguage:typescript",
"onLanguage:javascriptreact",
"onLanguage:typescriptreact",
"onLanguage:vue",
"onLanguage:svelte"
],
"main": "./extension.js",
"contributes": {
"configuration": {
"title": "JavaScript Auto Backticks",
"properties": {
"js-auto-backticks.enableRevert": {
"type": "boolean",
"default": false,
"description": "Revert to regular quotes after removing last placeholder of a template string."
},
"js-auto-backticks.preferredStandardQuotes": {
"type": "string",
"enum": [
"auto",
"single",
"double"
],
"default": "auto",
"enumDescriptions": [
"Auto detect",
"Single quotes",
"Double quotes"
],
"description": "Specifies preferred quotation marks when reverting standard string."
}
}
}
},
"scripts": {
"postversion": "git push --follow-tags",
"lint": "eslint src/**/*.js",
"lintFix": "eslint src/**/*.js --fix"
},
"devDependencies": {
"@types/node": "x",
"@types/vscode": "x",
"babel-eslint": "x",
"eslint": "6.8.0"
},
"dependencies": {
"@phenomnomnominal/tsquery": "5.0.0",
"typescript": "4.6.4"
}
}