-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
51 lines (51 loc) · 1.36 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
{
"name": "sfdx-plugin-source-read",
"description": "sfdx plugin to read Metadata e.g. full Profiles via CRUD Metadata API",
"version": "0.0.0-development",
"author": "Matthias Rolke @amtrack",
"bugs": "https://github.com/amtrack/sfdx-plugin-source-read/issues",
"type": "module",
"bin": {
"sfdx-plugin-source-read": "bin/run"
},
"dependencies": {
"@salesforce/sf-plugins-core": "12.1.1",
"@salesforce/source-deploy-retrieve": "12.10.3"
},
"devDependencies": {
"@salesforce/dev-scripts": "10.2.11",
"execa": "9.5.2",
"oclif": "4.17.7"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/amtrack/sfdx-plugin-source-read",
"keywords": [
"sfdx-plugin",
"sf-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sf",
"topicSeparator": " ",
"additionalHelpFlags": [
"-h"
]
},
"mocha": {
"loader": "ts-node/esm",
"no-warnings": "ExperimentalWarning"
},
"repository": "amtrack/sfdx-plugin-source-read",
"scripts": {
"build": "rm -rf lib && tsc -p . && oclif manifest",
"prepack": "npm run build",
"prepare": "npm run build",
"test": "tsc -p test && nyc --reporter=lcov --reporter=text mocha \"test/**/*.test.ts\"",
"test:e2e": "tsc -p test && mocha --timeout 60000 \"test/**/*.e2e.ts\""
}
}