-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
75 lines (75 loc) · 1.8 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
{
"name": "sfdx-metadata-splitter",
"description": "Split Salesforce metadata files",
"version": "4.0.0",
"author": "Ziemniakoss",
"bugs": "https://github.com/Ziemniakoss/sfdx-metadata-splitter/issues",
"dependencies": {
"@salesforce/command": "^5.3.5",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@oclif/plugin-help": "^5.2.9",
"@oclif/test": "^2.3.16",
"@salesforce/dev-scripts": "^3.1.1",
"@salesforce/ts-sinon": "^1.4.6",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"prettier": "^2.8.7",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/Ziemniakoss/sfdx-metadata-splitter",
"keywords": [
"sfdx-plugin",
"metadata",
"profiles",
"translations",
"labels",
"management",
"splitting"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"topics": {
"splitter": {
"description": "manage split metadata files"
},
"splitter:labels": {
"description": "manage split labels"
},
"splitter:profiles": {
"description": "manage split profiles"
},
"splitter:translations": {
"description": "manage split translations"
},
"splitter:permission-sets": {
"description": "manage split permission sets"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "Ziemniakoss/sfdx-metadata-splitter",
"scripts": {
"build": "tsc -p .",
"postpack": "rm -f oclif.manifest.json",
"pretest": "npm run build",
"test": "nyc --extension .ts --require ts-node/register mocha --forbid-only \"test/**/*.test.ts\" --timeout 10000",
"prepack": "rm -rf lib && tsc -p . && oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev readme && git add README.md"
}
}