generated from salesforcecli/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
125 lines (125 loc) · 3.8 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
{
"name": "@salesforce/plugin-omnistudio-migration-tool",
"description": "This SFDX plugin migrates FlexCard, OmniScript, DataRaptor, and Integration Procedure custom objects to standard objects.",
"version": "1.6.0",
"author": "Salesforce",
"bugs": "https://github.com/forcedotcom/cli/issues",
"dependencies": {
"@babel/parser": "^7.25.4",
"@apexdevtools/apex-parser": "^4.1.0",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
"@salesforce/command": "^4.2.1",
"@salesforce/core": "^2.37.1",
"@types/jsdom": "^21.1.7",
"@types/lodash.chunk": "^4.2.9",
"cheerio": "^1.0.0",
"jsdom": "^25.0.0",
"lodash.chunk": "^4.2.0",
"open": "^8.4.2",
"tslib": "^2",
"xmldom": "^0.6.0"
},
"devDependencies": {
"@babel/parser": "^7.25.4",
"@oclif/dev-cli": "^1",
"@oclif/plugin-command-snapshot": "^3.3.15",
"@oclif/plugin-help": "^3",
"@oclif/test": "^1",
"@salesforce/dev-config": "^2.1.2",
"@salesforce/dev-scripts": "^0",
"@salesforce/plugin-command-reference": "^1.4.7",
"@salesforce/prettier-config": "^0.0.3",
"@salesforce/ts-sinon": "^1",
"@types/babel__traverse": "^7.20.6",
"@types/jsforce": "^1.11.5",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.4.1",
"eslint": "^7.27.0",
"eslint-config-oclif": "^3.1",
"eslint-config-prettier": "^8",
"eslint-config-salesforce": "^0.1.6",
"eslint-config-salesforce-license": "^0.2.0",
"eslint-config-salesforce-typescript": "^0.2.7",
"eslint-plugin-header": "^3.0.0",
"eslint-plugin-import": "2.24.2",
"eslint-plugin-jsdoc": "^35.1.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-typescript": "^0",
"globby": "^11",
"husky": "^4.3.8",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"pretty-quick": "^3.3.1",
"sinon": "10.0.0",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/salesforcecli/plugin-omnistudio-migration-tool",
"keywords": [
"sfdx-plugin"
],
"license": "BSD-3-Clause",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"omnistudio": {
"subtopics": {
"migration": {
"description": "Migration commands for OmniStudio"
}
},
"description": "Useful commands for OmniStudio."
}
},
"devPlugins": [
"@oclif/plugin-command-snapshot",
"@oclif/plugin-help",
"@salesforce/plugin-command-reference"
]
},
"repository": "salesforcecli/plugin-omnistudio-migration-tool",
"scripts": {
"build": "sf-build",
"clean": "sf-clean",
"clean-all": "sf-clean all",
"clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json",
"compile": "sf-compile",
"docs": "sf-docs",
"format": "sf-format",
"lint": "sf-lint",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "yarn lint && yarn test:deprecation-policy && yarn test:command-reference",
"prepack": "sf-prepack",
"prepare": "sf-install",
"pretest": "sf-compile-test",
"test": "sf-test",
"test:command-reference": "./bin/run commandreference:generate --erroronwarnings",
"test:deprecation-policy": "./bin/run snapshot:compare",
"test:nuts": "nyc mocha \"**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
"version": "oclif-dev readme"
},
"publishConfig": {
"access": "public"
},
"husky": {
"hooks": {
"commit-msg": "sf-husky-commit-msg",
"pre-commit": "sf-husky-pre-commit",
"pre-push": "sf-husky-pre-push"
}
}
}