This repository has been archived by the owner on Nov 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
77 lines (77 loc) · 2.07 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
{
"name": "mo-dx-plugin",
"version": "0.3.2",
"author": "Mohith Shrivastava",
"bugs": "https://github.com/ForceProjects/mo-dx-plugin/issues",
"dependencies": {
"@oclif/command": "^1.5.8",
"@oclif/config": "^1.12.6",
"@oclif/errors": "^1.2.2",
"@salesforce/command": "^3.0.3",
"@salesforce/ts-types": "^1.0.1",
"adm-zip": "^0.4.13",
"chalk": "^4.1.0",
"fs-extra": "^9.0.1",
"lodash": "^4.17.13",
"mime-types": "^2.1.24",
"xmldom-sfdx-encoding": "^0.1.29",
"tslib": "^1.9.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.0",
"@oclif/plugin-help": "^2",
"@oclif/test": "^1",
"@salesforce/dev-config": "2.0.0",
"@types/adm-zip": "^0.4.31",
"@types/chai": "^4",
"@types/fs-extra": "^9.0.1",
"@types/jsforce": "1.9.13",
"@types/lodash": "^4.14.13",
"@types/mime-types": "^2.1.0",
"@types/mocha": "^5",
"@types/node": "^14.10.1",
"chai": "^4",
"globby": "8",
"mocha": "^5",
"nyc": "^14",
"sinon": "5",
"ts-node": "^9",
"typescript": "3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/msrivastav13/mo-dx-plugin",
"keywords": [
"sfdx-plugin"
],
"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 && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
}
}