forked from dxatscale/sfpowerkit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
152 lines (152 loc) · 4.31 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "sfpowerkit",
"description": "A Salesforce DX Plugin with multiple functionalities aimed at improving development and operational workflows",
"version": "1.45.1-7",
"author": {
"name": "DXatScale",
"email": "[email protected]"
},
"contributors": [
{
"name": "Azlam Abdulsalam",
"email": "[email protected]",
"url": "https://www.linkedin.com/in/azlam/"
},
{
"name": "Genoud Douanla Djatio",
"email": "[email protected]"
},
{
"name": "Manivasaga Murugesan",
"email": "[email protected]"
},
{
"name": "Ahmed Abdo",
"email": "[email protected]"
}
],
"bugs": "https://github.com/accenture/sfpowerkit/issues",
"dependencies": {
"@pony-ci/sfdx-node": "^1.0.4",
"@salesforce/command": "^2.1.4",
"@salesforce/core": "^2.1.4",
"archiver": "3.1.1",
"async-retry": "^1.3.1",
"bottleneck": "^2.19.5",
"child-process": "^1.0.2",
"child-process-promise": "^2.2.1",
"cli-ux": "^5.4.5",
"diff": "^4.0.1",
"diff-match-patch": "^1.0.4",
"diff-match-patch-line-and-word": "^0.1.2",
"fast-glob": "^3.2.2",
"find-java-home": "^1.0.1",
"fs-extra": "^9.0.0",
"ignore": "^5.1.4",
"pino": "^5.15.0",
"pino-pretty": "^3.5.0",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"simple-git": "^1.129.0",
"ts-node": "^8.10.1",
"tslib": "1",
"unzip-stream": "0.3.0",
"unzipper": "0.10.5",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-help": "^2.2.3",
"@oclif/test": "^1.2.5",
"@salesforce/dev-config": "^1.5.0",
"@types/async-retry": "^1.4.2",
"@types/chai": "^4.2.7",
"@types/diff-match-patch": "^1.0.32",
"@types/mocha": "^5",
"@types/node": "^13.1.5",
"@types/pino": "^6.0.0",
"@types/request-promise": "^4.1.45",
"@types/rimraf": "^3.0.0",
"@types/fs-extra": "^9.0.1",
"chai": "^4",
"globby": "^10.0.1",
"husky": "^4.0.1",
"mocha": "^7.0.0",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"pretty-quick": "^2.0.1",
"rimraf": "^3.0.0",
"sinon": "^8.0.4",
"typescript": "^3.6.4"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/resources",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/accenture/sfpowerkit",
"keywords": [
"sfdx-plugin",
"sfdx",
"plugin",
"salesforce",
"cli"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {
"sfpowerkit:package": {
"description": "Helper commands for unlocked package"
},
"sfpowerkit:package:version": {
"description": "Commands related to details of package"
},
"sfpowerkit:org": {
"description": "Helper commands for org such as connectedapp, creation of sandbox etc"
},
"sfpowerkit:pool": {
"description": "Commands to create a pool of scratch orgs"
},
"sfpowerkit:auth": {
"description": "Authorisation Related Commands"
},
"sfpowerkit:source": {
"description": "Commands that work on the source"
},
"sfpowerkit:source:customlabel": {
"description": "Commands to operate on custom label"
},
"sfpowerkit:source:profile": {
"description": "Commands that operate on profiles"
},
"sfpowerkit:source:pmd": {
"description": "This command is a wrapper around PMD ( downloads PMD for the first time) with some predefined defaults, such as ruleset, output format, output file. The command is to be run from the project directory"
},
"sfpowerkit": {
"description": "Salesforce DevOps Helper Extensions to use in CI/CD Pipelines"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "accenture/sfpowerkit",
"scripts": {
"postpack": "rimraf oclif.manifest.json npm-shrinkwrap.json",
"posttest": "tslint -p test -t stylish",
"prepare": "rimraf lib && tsc -b && oclif-dev manifest && npm shrinkwrap",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "git add README.md"
},
"husky": {
"hooks": {
"pre-commit": "npx pretty-quick --staged"
}
}
}