forked from wadewegner/sfdx-waw-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
131 lines (131 loc) · 3.64 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
{
"name": "sfdx-waw-plugin",
"description": "A plugin for the Salesforce CLI built by Wade Wegner and containing a lot of helpful commands.",
"version": "1.5.0",
"author": "Wade Wegner @WadeWegner",
"bugs": {
"url": "https://github.com/wadewegner/sfdx-waw-plugin/issues"
},
"dependencies": {
"@oclif/config": "^1",
"@salesforce/command": "^1",
"@salesforce/core": "^1",
"@salesforce/kit": "^1",
"async": "^2.6.1",
"child_process": "^1.0.2",
"fs-extra": "^7.0.1",
"jsforce": "^1.8.4",
"jsonfile": "^2.4.0",
"node-forge": "^0.7.5",
"open": "0.0.5",
"recursive-readdir": "^2.2.2",
"request": "^2.87.0",
"request-promise": "^4.2.4",
"tslib": "^1",
"url-exists": "^1.0.3"
},
"devDependencies": {
"@oclif/command": "^1",
"@oclif/dev-cli": "^1",
"@oclif/errors": "^1",
"@oclif/plugin-help": "^1",
"@oclif/test": "^1",
"@salesforce/dev-config": "1.1.0",
"@salesforce/ts-types": "^1.1.2",
"@types/chai": "4",
"@types/fs-extra": "^5.0.5",
"@types/jsforce": "^1.8.13",
"@types/mocha": "5",
"@types/node": "10",
"@types/node-forge": "^0.8.1",
"@types/request": "^2.48.1",
"@types/request-promise": "^4.1.42",
"chai": "^4",
"eslint": "^4.19.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.12.0",
"globby": "8",
"mocha": "^6",
"np": "^2.20.1",
"nyc": "^12",
"shelljs": "^0.7.7",
"sinon": "7",
"ts-node": "^8",
"typescript": "^3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/WadeWegner/sfdx-waw-plugin",
"keywords": [
"force.com",
"oss",
"salesforce",
"salesforce-dx",
"salesforcedx"
],
"license": "ISC",
"main": "index.js",
"oclif": {
"commands": "./lib/commands",
"topics": {
"waw": {
"description": "Various commands from Wade Wegner",
"subtopics": {
"source": {
"description": "commands for source"
},
"connectedapp": {
"description": "commands for connected apps"
},
"project": {
"description": "commands for projects"
},
"trace": {
"description": "commands for trace flags"
},
"apex": {
"description": "commands for apex"
},
"static": {
"description": "commands for static resources"
},
"org": {
"description": "commands for org resources"
},
"codeclean": {
"description": "commands for the code clean service from Ben Edwards"
},
"auth": {
"description": "commands for authorizing an org for use with the Salesforce CLI"
},
"workbench": {
"description": "commands for working with Workbench"
},
"package2": {
"description": "commands for working with 2GPs"
}
}
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "WadeWegner/sfdx-waw-plugin",
"scripts": {
"postpack": "rm -f oclif.manifest.json npm-shrinkwrap.json",
"posttest": "tsc -p test --noEmit && tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme && npm shrinkwrap",
"prepare": "rm -rf lib && tsc && oclif-dev manifest && oclif-dev readme && npm shrinkwrap",
"release": "np",
"test": "nyc mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
}
}