forked from Flow-Scanner/lightning-flow-scanner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.4 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.4 KB
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
{
"name": "lightning-flow-scanner",
"version": "5.2.0",
"bugs": "https://github.com/Lightning-Flow-Scanner/lightning-flow-scanner-sfdx/issues",
"dependencies": {
"@oclif/core": "^4.5.2",
"@salesforce/core": "^8.18.7",
"@salesforce/sf-plugins-core": "^12.2.3",
"chalk": "^5.4.1",
"cosmiconfig": "^9.0.0",
"fs-extra": "^11.3.0",
"glob": "^11.0.3",
"lightning-flow-scanner-core": "^5.1.0"
},
"devDependencies": {
"@oclif/plugin-help": "6.2.32",
"@oclif/test": "4.1.13",
"@salesforce/dev-config": "4.3.1",
"@salesforce/ts-sinon": "1.4.30",
"@sinonjs/fake-timers": "14.0.0",
"@types/chai": "5.2.2",
"@types/jsforce": "1.11.5",
"@types/mocha": "10.0.10",
"@types/node": "24.1.0",
"@types/sinon": "17.0.4",
"@types/sinonjs__fake-timers": "8.1.5",
"@typescript-eslint/eslint-plugin": "8.38.0",
"@typescript-eslint/parser": "8.38.0",
"chai": "5.2.1",
"eslint": "9.32.0",
"eslint-config-prettier": "10.1.8",
"globby": "14.1.0",
"mocha": "11.7.1",
"nyc": "17.1.0",
"oclif": "4.22.5",
"prettier": "3.6.2",
"sinon": "21.0.0",
"ts-node": "10.9.2",
"typescript": "5.8.3"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Lightning-Flow-Scanner/lightning-flow-scanner-sfdx/",
"keywords": [
"sfdx-plugin"
],
"license": "AGPL-3.0",
"oclif": {
"commands": "./lib/src/commands",
"bin": "sf",
"topics": {
"flow": {
"description": "Commands to find and fix potential bugs in Salesforce Flows."
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/Lightning-Flow-Scanner/lightning-flow-scanner-sfdx.git",
"scripts": {
"prestart": "npm run prepack",
"start": "ts-node bin/run",
"lint": "eslint",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"prettier": "prettier --write '**/*.{js,json,md,ts,yaml,yml}'",
"test": "nyc --include src npm run test:unit",
"pretest": "npm run prepack",
"test:unit": "mocha -r ts-node/register test/**/*.test.ts",
"version": "oclif readme && git add README.md",
"lfs:link": "npm link lightning-flow-scanner-core && npm pack && sf plugins link"
},
"type": "module"
}