forked from salesforcecli/plugin-data
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
143 lines (143 loc) · 4.54 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
"name": "@salesforce/plugin-data",
"version": "2.2.0",
"description": "Plugin for salesforce data commands",
"author": "Salesforce",
"main": "lib/index.js",
"homepage": "https://github.com/salesforcecli/plugin-data",
"keywords": [
"force",
"salesforce",
"sfdx",
"salesforcedx",
"sfdx-plugin"
],
"license": "BSD-3-Clause",
"config": {},
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"devPlugins": [
"@oclif/plugin-help",
"@oclif/plugin-command-snapshot",
"@salesforce/plugin-command-reference"
],
"topics": {
"data": {
"description": "manipulate records in your org",
"longDescription": "Use the data commands to manipulate records in your org. Commands are available to help you work with various APIs. Import CSV files with the Bulk API. Export and import data with the SObject Tree Save API. Perform simple CRUD operations on individual records with the REST API.",
"subtopics": {
"create": {
"description": "create a record"
},
"delete": {
"description": "delete a single record or multiple records in bulk"
},
"export": {
"description": "export data from your org"
},
"get": {
"description": "get a single record"
},
"import": {
"description": "import data via the tree api"
},
"query": {
"description": "query records"
},
"update": {
"description": "update a single record"
},
"upsert": {
"description": "upsert many records via the bulk API"
}
}
}
}
},
"files": [
"/lib",
"/messages",
"/schema",
"/oclif.manifest.json"
],
"repository": "salesforcecli/plugin-data",
"bugs": "https://github.com/forcedotcom/cli/issues",
"publishConfig": {
"access": "public"
},
"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 && yarn test:json-schema",
"prepack": "sf-prepack",
"prepare": "sf-install",
"pretest": "sf-compile-test",
"test": "sf-test",
"test:command-reference": "./bin/dev commandreference:generate --erroronwarnings",
"test:deprecation-policy": "./bin/dev snapshot:compare",
"test:json-schema": "./bin/dev schema:compare",
"test:nuts": "nyc mocha \"./test/**/*.nut.ts\" --slow 4500 --timeout 600000 --parallel",
"version": "oclif readme"
},
"dependencies": {
"@oclif/core": "^2.0.7",
"@salesforce/core": "^3.32.12",
"@salesforce/kit": "^1.8.3",
"@salesforce/sf-plugins-core": "^2.0.1",
"@salesforce/ts-types": "^1.7.2",
"@types/fs-extra": "^9.0.13",
"chalk": "^4.1.0",
"csv-parse": "^4.16.3",
"csv-stringify": "^6.2.3",
"fs-extra": "^10.0.1",
"jsforce": "^2.0.0-beta.19",
"tslib": "^2"
},
"devDependencies": {
"@oclif/plugin-command-snapshot": "^3.3.3",
"@salesforce/cli-plugins-testkit": "^3.2.20",
"@salesforce/dev-config": "^3.0.1",
"@salesforce/dev-scripts": "^3.1.0",
"@salesforce/plugin-command-reference": "^2.2.8",
"@salesforce/prettier-config": "^0.0.2",
"@salesforce/ts-sinon": "^1.4.4",
"@swc/core": "^1.3.24",
"@types/chai-as-promised": "^7.1.3",
"@types/graceful-fs": "^4.1.6",
"@types/shelljs": "^0.8.10",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.48.2",
"chai": "^4.3.7",
"chai-as-promised": "^7.1.1",
"eslint": "^8.21.0",
"eslint-config-prettier": "^8.6.0",
"eslint-config-salesforce": "^1.1.0",
"eslint-config-salesforce-license": "^0.2.0",
"eslint-config-salesforce-typescript": "^1.1.1",
"eslint-plugin-header": "^3.1.1",
"eslint-plugin-import": "2.27.4",
"eslint-plugin-jsdoc": "^39.6.7",
"eslint-plugin-sf-plugin": "^1.8.0",
"fast-xml-parser": "^3.20.3",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"oclif": "^3.6.2",
"prettier": "^2.8.0",
"pretty-quick": "^3.1.0",
"shelljs": "^0.8.3",
"shx": "^0.3.3",
"sinon": "10.0.0",
"strip-ansi": "^6.0.1",
"ts-node": "^10.4.0",
"typescript": "^4.9.4"
}
}