forked from georgwittberger/sfdx-data-deploy-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.79 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
{
"name": "sfdx-data-deploy-plugin",
"description": "SFDX plugin to deploy/retrieve data to/from Salesforce",
"version": "2.4.5",
"license": "MIT",
"author": "Georg Wittberger <[email protected]>",
"homepage": "https://github.com/georgwittberger/sfdx-data-deploy-plugin",
"keywords": [
"sfdx-plugin",
"salesforce",
"deployment",
"data",
"records"
],
"repository": {
"type": "git",
"url": "https://github.com/georgwittberger/sfdx-data-deploy-plugin.git"
},
"bugs": "https://github.com/georgwittberger/sfdx-data-deploy-plugin/issues",
"scripts": {
"lint": "tslint --project . --config tslint.json --format stylish",
"postpack": "rimraf oclif.manifest.json",
"prepack": "rimraf lib && tsc -b && oclif-dev manifest",
"update-readme": "oclif-dev readme"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
"@salesforce/command": "^2",
"@salesforce/core": "^2",
"fs-extra": "^9",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"@salesforce/dev-config": "1.4.1",
"@types/chai": "^4",
"@types/fs-extra": "^8",
"@types/mocha": "^5",
"@types/node": "^10",
"chai": "^4",
"globby": "^8",
"mocha": "^5",
"nyc": "^14",
"rimraf": "^3.0.2",
"ts-node": "^8",
"tslint": "^5"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"datadeploy": {
"description": "Commands to deploy/retrieve data to/from Salesforce"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
}
}