-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 2.99 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
109
110
111
{
"name": "beautyAmp",
"displayName": "AMPscript Beautifier",
"description": "Beautify (prettify) AMPscript for Marketing Cloud.",
"version": "0.5.12",
"publisher": "FiB",
"author": {
"name": "filipbostik"
},
"repository": {
"type": "git",
"url": "https://github.com/FiB3/beautyAmp.git"
},
"homepage": "https://fib3.vercel.app/ampscript",
"icon": "images/beautifierIcon.png",
"engines": {
"vscode": "^1.77.0"
},
"categories": [
"Programming Languages",
"Formatters",
"Other"
],
"keywords": [
"ampscript",
"amp",
"salesforce",
"marketing cloud",
"salesforce marketing cloud",
"exacttarget",
"sfmc",
"mc",
"content builder",
"cloud pages",
"landing pages"
],
"activationEvents": [
"onLanguage:AMPscript",
"onLanguage:ampscript"
],
"main": "./dist/extension",
"contributes": {
"languages": [
{
"id": "AMPscript",
"aliases": [
"AMPscript",
"ampscript"
],
"extensions": [
".amp",
".ampscript"
]
}
],
"configuration": {
"Title": "AMPscript Beautifier",
"properties": {
"beautyAmp.capitalizeSet": {
"type": "boolean",
"default": true,
"description": "Use upper case characters for 'SET' keywords (false for lowercase)."
},
"beautyAmp.capitalizeVar": {
"type": "boolean",
"default": true,
"description": "Use upper case characters for 'VAR' keywords (false for lowercase)."
},
"beautyAmp.capitalizeAndOrNot": {
"type": "boolean",
"default": true,
"description": "Use upper case characters for 'AND', 'OR', 'NOT' keywords (false for lowercase)."
},
"beautyAmp.capitalizeIfFor": {
"type": "boolean",
"default": true,
"description": "Use upper case characters for 'IF' and 'FOR' blocks keywords (false for lowercase)."
},
"beautyAmp.maxParametersPerLine": {
"type": "number",
"default": 4,
"description": "How many method parameters can be located on one line (creates new lines if overflown)."
}
}
}
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run lint",
"test": "node ./test/runTest.js",
"vscode:prepublish": "node preBundle.js --bundlingOn; npm run package",
"package": "webpack --mode production --devtool hidden-source-map",
"vscode:predev": "node preBundle.js",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "16.x",
"@types/vscode": "1.77.0",
"@vscode/extension-telemetry": "^0.9.6",
"@vscode/test-electron": "^2.3.0",
"beauty-amp-core2": "0.4.10",
"eslint": "^9.1.1",
"glob": "^8.1.0",
"mocha": "^10.2.0",
"webpack": "^5.90.3",
"webpack-cli": "^5.1.4"
}
}