This repository has been archived by the owner on Mar 10, 2024. It is now read-only.
forked from forcedotcom/SFDX-Data-Move-Utility
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.85 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
{
"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.32.6",
"author": "Haim Knokh",
"bugs": "https://github.com/forcedotcom/SFDX-Data-Move-Utility/issues",
"dependencies": {
"@oclif/command": "^1.8.20",
"@oclif/config": "^1.18.6",
"@oclif/errors": "^1.3.6",
"@salesforce/command": "^3.1.3",
"@salesforce/core": "^2.37.1",
"@salesforce/dev-config": "^1.6.0",
"@types/bunyan": "^1.8.6",
"alasql": "^0.6.4",
"casual": "^1.6.2",
"class-transformer": "^0.2.3",
"csv-parse": "^4.12.0",
"csv-writer": "^1.5.0",
"deep.clone": "^2.1.2",
"es6-shim": "^0.35.5",
"fastest-levenshtein": "^1.0.12",
"glob": "^7.1.4",
"jsforce": "^1.9.3",
"madge": "^3.8.0",
"promise-parallel-throttle": "^3.3.0",
"reflect-metadata": "^0.1.13",
"soql-parser-js": "^1.2.1",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1.2.7",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^10.17.32",
"chai": "^4",
"globby": "^8",
"mocha": "^8.1.3",
"nyc": "^14.1.1",
"ts-node": "^8",
"tslint": "^5",
"typescript": "^4.4.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://help.sfdmu.com",
"keywords": [
"sfdx plugin",
"data migration",
"data loader",
"salesforce data migration",
"migrating salesforce data",
"salesforce data migration tool",
"salesforce data loader",
"sfdx data loader",
"sfdmu",
"sfdx data move utility",
"open-source data loader",
"fast data seeding"
],
"license": "BSD-3-Clause",
"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.5.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"
}
}