-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.09 KB
/
package.json
File metadata and controls
81 lines (81 loc) · 2.09 KB
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
{
"name": "mo-dx-plugin",
"version": "1.0.0",
"author": "Mohith Shrivastava",
"bugs": "https://github.com/ForceProjects/mo-dx-plugin/issues",
"dependencies": {
"@salesforce/core": "^8.28.3",
"@salesforce/sf-plugins-core": "^12.2.6",
"adm-zip": "^0.5.17",
"chalk": "^4.1.2",
"fs-extra": "^11.3.4",
"mime-types": "^2.1.35",
"tslib": "^2.8.1",
"xmldom-sfdx-encoding": "^0.1.30"
},
"devDependencies": {
"@oclif/plugin-help": "^6.2.38",
"@oclif/test": "^4.1.18",
"@salesforce/dev-config": "^4.3.3",
"@salesforce/ts-sinon": "^1.4.34",
"@types/adm-zip": "^0.5.8",
"@types/chai": "^4.3.20",
"@types/fs-extra": "^11.0.4",
"@types/mime-types": "^2.1.4",
"@types/mocha": "^10.0.10",
"@types/node": "^20.17.0",
"@types/sinon": "^17.0.4",
"chai": "^4.5.0",
"globby": "^11.1.0",
"mocha": "^10.8.2",
"nyc": "^17.1.0",
"oclif": "^4.23.0",
"sinon": "^11.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.0"
},
"overrides": {
"serialize-javascript": "7.0.5"
},
"engines": {
"node": ">=20.0.0"
},
"bin": {
"mo-dx-plugin": "./bin/run.js"
},
"files": [
"/bin",
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/msrivastav13/mo-dx-plugin",
"keywords": [
"sfdx-plugin"
],
"type": "module",
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {
"deploy": {
"description": "Commands to deploy apex,vf,trigger and aura bundle."
},
"retrieve": {
"description": "Commands to get DX formatted code or metadata from the unmanaged package/managed package or changeset."
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "ForceProjects/mo-dx-plugin",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "tsc -p test --noEmit",
"prepack": "rm -rf lib && tsc && oclif manifest && oclif readme",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
}
}