-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
79 lines (79 loc) · 2.24 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
{
"name": "lightning-flow-scanner",
"version": "2.36.0",
"bugs": "https://github.com/Lightning-Flow-Scanner/lightning-flow-scanner-sfdx/issues",
"dependencies": {
"@oclif/core": "^4.0.32",
"@salesforce/core": "^8.8.0",
"@salesforce/sf-plugins-core": "^12.0.11",
"chalk": "^5.3.0",
"cosmiconfig": "^9.0.0",
"fs-extra": "^11.2.0",
"glob": "^11.0.0",
"lightning-flow-scanner-core": "4.8.0",
"tslib": "^2",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@oclif/plugin-help": "^6.2.17",
"@oclif/test": "^4.1.0",
"@salesforce/dev-config": "^4.3.1",
"@salesforce/ts-sinon": "^1.4.29",
"@sinonjs/fake-timers": "^13.0.5",
"@types/chai": "^5",
"@types/jsforce": "^1.11.5",
"@types/mocha": "^10.0.9",
"@types/node": "^22.9.0",
"@types/sinonjs__fake-timers": "^8.1.5",
"@typescript-eslint/eslint-plugin": "^8.14.0",
"@typescript-eslint/parser": "^8.14.0",
"chai": "^5",
"eslint": "^9.15.0",
"eslint-config-prettier": "^9.1.0",
"globby": "^14.0.2",
"mocha": "^10.8.2",
"nyc": "^17",
"oclif": "^4.15.24",
"prettier": "^3.3.3",
"ts-node": "^10.9.2",
"typescript": "^5.6.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": {
"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 npm run test:unit",
"pretest:unit": "npm run prepack",
"test:unit": "mocha -r ts-node/register test/**/*.test.ts",
"version": "oclif readme && git add README.md"
},
"type": "module"
}