-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2.1 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
{
"name": "sfdx-plugin-package-xml",
"description": "explore metadata in an org and generate a package.xml manifest",
"version": "0.0.0-development",
"author": "Matthias Rolke @amtrack",
"bugs": "https://github.com/amtrack/sfdx-plugin-package-xml/issues",
"type": "module",
"bin": {
"sfdx-plugin-package-xml": "bin/run"
},
"dependencies": {
"@mdapi-issues/listmetadata-installed-missing-namespaceprefix": "3.0.0",
"@mdapi-issues/listmetadata-recordtype-personaccount": "3.0.0",
"@mdapi-issues/listmetadata-standardvalueset": "3.0.0",
"@mdapi-issues/listmetadata-standardvaluesettranslation-type": "3.0.0",
"@salesforce/sf-plugins-core": "12.0.11",
"get-stdin": "9.0.0",
"picomatch": "4.0.2"
},
"devDependencies": {
"@salesforce/dev-scripts": "10.2.11",
"oclif": "4.17.7"
},
"files": [
"/bin",
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/amtrack/sfdx-plugin-package-xml",
"keywords": [
"sfdx",
"sfdx-plugin",
"sf-plugin",
"package.xml",
"manifest",
"metadata backup",
"file properties",
"salesforce"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sf",
"topicSeparator": " ",
"topics": {
"package.xml": {
"description": "explore metadata in an org and generate a package.xml manifest"
}
},
"additionalHelpFlags": [
"-h"
],
"repositoryPrefix": "<%- repo %>/blob/main/<%- commandPath %>"
},
"release": {
"branches": [
"main",
{
"name": "beta",
"channel": "beta",
"prerelease": "beta"
}
]
},
"mocha": {
"loader": "ts-node/esm",
"no-warnings": "ExperimentalWarning"
},
"repository": "amtrack/sfdx-plugin-package-xml",
"scripts": {
"build": "rm -rf lib && tsc -p . && oclif manifest",
"develop": "bash scripts/develop.sh",
"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 \"test/**/*.e2e-spec.ts\""
}
}