-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
160 lines (160 loc) · 5.04 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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "lightningflowscanner",
"displayName": "Lightning Flow Scanner",
"publisher": "ForceConfigControl",
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/Lightning-Flow-Scanner/lightning-flow-scanner-vsce"
},
"icon": "media/lightningflow.png",
"description": "A VSCode Extension designed to pinpoint deviations from Industry Best Practices in Salesforce Flows, ensuring standards of business automation excellence.",
"version": "3.29.0",
"engines": {
"vscode": "^1.92.0"
},
"categories": [
"Other"
],
"activationEvents": [],
"main": "./dist/extension.js",
"contributes": {
"configuration": {
"title": "Lightning Flow Scanner",
"properties": {
"lightningFlowScanner.SpecifyFiles": {
"type": "boolean",
"default": false,
"description": "Specify flow file paths instead of a root directory."
},
"lightningFlowScanner.NamingConvention": {
"type": "string",
"default": "[A-Za-z0-9]+_[A-Za-z0-9]+",
"description": "Specify a REGEX expression to use as Flow Naming convention."
},
"lightningFlowScanner.APIVersion": {
"type": "string",
"default": ">50",
"description": "Specify an expression to validate the API version, i.e. '===50'(use at least 50)."
},
"lightningFlowScanner.Reset": {
"type": "boolean",
"default": false,
"description": "Reset all configurations on every scan"
}
}
},
"commands": [
{
"command": "lightningflowscanner.viewDefaulFlowRules",
"title": "Default Flow Rules"
},
{
"command": "lightningflowscanner.scanFlows",
"title": "Scan Flows"
},
{
"command": "lightningflowscanner.debugView",
"title": "Debug Flow Scanner View"
},
{
"command": "lightningflowscanner.fixFlows",
"title": "Fix Flows"
},
{
"command": "lightningflowscanner.calculateFlowTestCoverage",
"title": "Calculate Flow Coverage"
},
{
"command": "lightningflowscanner.configRules",
"title": "Configurate Flow Rules"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "lfs-sidebar",
"title": "Lightning Flow Scanner",
"icon": "media/logo.svg"
}
]
},
"views": {
"lfs-sidebar": [
{
"type": "webview",
"id": "lfs-sb",
"name": "Lightning Flow Scanner",
"icon": "media/logo.svg",
"contextualTitle": "Lightning Flow Scanner"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run package",
"compile": "webpack --config ./build/node-extension.webpack.config.js",
"watch": "concurrently \"rollup -c -w\" \"webpack --watch --config ./build/node-extension.webpack.config.js\"",
"build-webapp": "rollup -c",
"build": "rollup -c && vsce package",
"deploy:minor": "vsce publish minor",
"deploy:major": "vsce publish major",
"deploy:patch": "vsce publish patch",
"package": "webpack --mode production --devtool hidden-source-map --config ./build/node-extension.webpack.config.js",
"test-compile": "tsc -p ./",
"test-watch": "tsc -watch -p ./",
"pretest": "npm run test-compile && npm run lint",
"lint": "eslint src --ext ts",
"check": "svelte-check --tsconfig ./tsconfig.json",
"wdio": "wdio run ./wdio.conf.ts",
"wdio-test": "npm run build && npm run wdio"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.1",
"@tsconfig/svelte": "^5.0.4",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.9",
"@types/node": "22.9.0",
"@types/uuid": "^10.0.0",
"@types/vscode": "1.92.0",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"@vscode/vsce": "^3.2.1",
"@wdio/cli": "^9.2.14",
"@wdio/globals": "^9.2.14",
"@wdio/local-runner": "^9.2.15",
"@wdio/mocha-framework": "^9.2.8",
"@wdio/spec-reporter": "^9.2.14",
"autoprefixer": "^10.4.20",
"concurrently": "^9.1.0",
"eslint": "^9.15.0",
"glob": "^11.0.0",
"mocha": "^10.8.2",
"postcss": "^8.4.49",
"rollup": "^4.27.2",
"rollup-plugin-css-only": "^4.5.2",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-svelte": "^7.2.2",
"rollup-plugin-svelte-svg": "^1.0.0-beta.6",
"svelte-preprocess": "^6.0.3",
"tailwindcss": "^3.4.15",
"ts-loader": "^9.5.1",
"typescript": "^5.6.3",
"wdio-vscode-service": "^6.1.2",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"convert-array-to-csv": "^2.0.0",
"lightning-flow-scanner-core": "4.8.0",
"tabulator-tables": "6.3.0",
"uuid": "^11.0.3",
"xml2js": "^0.6.2"
}
}