-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
52 lines (52 loc) · 1.12 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
{
"name": "sf-trace-plugin",
"description": "A plugin that allows you to update trace flags in a target salesforce org",
"version": "1.0.4",
"dependencies": {
"@salesforce/core": "6.7.1",
"@salesforce/sf-plugins-core": "7.1.15"
},
"devDependencies": {
"@types/chai": "4.3.12",
"@types/mocha": "10.0.6",
"chai": "5.1.0",
"mocha": "10.3.0",
"ts-node": "10.9.2",
"typescript": "5.4.2"
},
"engines": {
"node": ">=18.0.0"
},
"oclif": {
"commands": "./lib/commands",
"bin": "sf",
"topicSeparator": " ",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"trace": {
"description": "Starts a TraceFlag"
}
},
"flexibleTaxonomy": true
},
"keywords": [
"force",
"salesforce",
"salesforcedx",
"sf",
"sf-plugin",
"sfdx",
"sfdx-plugin"
],
"license": "MIT",
"scripts": {
"build": "tsc -p . --pretty",
"link": "sf plugins link .",
"test": "mocha -c --full-trace"
},
"exports": "./lib/index.js",
"type": "module",
"author": "James Simone <16430727+jamessimone@users.noreply.github.com>"
}