-
Notifications
You must be signed in to change notification settings - Fork 76
/
package.json
95 lines (95 loc) · 2.74 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
{
"name": "sfdmu",
"description": "The SFDX Data Move Utility (SFDMU) is the most modern and powerful salesforce data migration tool. It will help you to populate your org with data in minutes.",
"version": "4.37.0",
"author": "Salesforce",
"license": "BSD-3-Clause",
"developedBy": "Haim Knokh",
"bugs": "https://github.com/forcedotcom/SFDX-Data-Move-Utility/issues",
"dependencies": {
"@babel/traverse": "^7.24.1",
"@oclif/command": "^1.8.36",
"@oclif/config": "^1.18.17",
"@oclif/errors": "^1.3.6",
"@salesforce/command": "^5.3.9",
"@salesforce/core": "^7.3.3",
"@salesforce/dev-config": "^4.1.0",
"@types/bunyan": "^1.8.11",
"alasql": "^4.5.2",
"casual": "^1.6.2",
"class-transformer": "^0.5.1",
"csv-parse": "^4.12.0",
"csv-writer": "^1.6.0",
"deep.clone": "^2.1.2",
"es6-shim": "^0.35.5",
"fastest-levenshtein": "^1.0.16",
"glob": "^10.3.12",
"jsforce": "^1.11.1",
"madge": "^8.0.0",
"promise-parallel-throttle": "^3.4.1",
"reflect-metadata": "^0.1.13",
"soql-parser-js": "^1.2.1",
"tslib": "^2.7.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/plugin-help": "^6.0.21",
"@oclif/test": "^3.2.10",
"@types/chai": "^4.3.14",
"@types/mocha": "^10.0.6",
"@types/node": "^20.12.7",
"chai": "^5.1.0",
"globby": "11.0.0",
"mocha": "^10.4.0",
"nyc": "^15.1.0",
"ts-node": "^10.9.2",
"tslint": "^6.1.3",
"typescript": "^5.6.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://help.sfdmu.com",
"keywords": [
"force",
"salesforce",
"salesforcedx",
"sf",
"sf-plugin",
"sfdx",
"sfdx-plugin"
],
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"sfdmu": {
"description": "The SFDX Data Move Utility (SFDMU) is the most modern and powerful salesforce data migration tool.\n• The SFDMU will help you to quickly populate your Scratch / Dev / Sandbox / Prod org with records imported from another org or CSV files."
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "forcedotcom/SFDX-Data-Move-Utility",
"addons": {
"run": {
"version": "1.6.0"
}
},
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md",
"build": "tsc -b",
"typedoc-sfdmu-run-addons": "typedoc --options typedoc-sfdmu-run-addons.json"
}
}