-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
119 lines (119 loc) · 3.09 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
{
"name": "@eon-com/eon-sfdx",
"description": "E.ON commands to support salesforce developments & deployments",
"version": "3.3.4",
"author": {
"email": "[email protected]",
"name": "Constantin Schlusche"
},
"contributors": [
{
"name": "Ronny Rokitta"
}
],
"bugs": {
"url": "https://github.com/eon-com/eon-sfdx/issues"
},
"dependencies": {
"@aws-sdk/client-secrets-manager": "^3.535.0",
"@flxbl-io/sfp": "^39.2.2",
"@oclif/core": "^3",
"@salesforce/core": "^8.6.1",
"@salesforce/packaging": "^4.0.4",
"@salesforce/schemas": "^1.9.0",
"@salesforce/source-deploy-retrieve": "^10.2.13",
"axios": "^0.27.2",
"bottleneck": "^2.19.5",
"chalk": "4.1.2",
"chromium": "^3.0.3",
"cli-progress": "^3.11.1",
"cli-table3": "^0.6.2",
"dedent-js": "^1.0.1",
"enquirer": "^2.3.6",
"execa": "5.1.1",
"fast-xml-parser": "^4.0.1",
"listr2": "^4.0.5",
"markdown-it": "^12.3.2",
"markdown-table": "^2.0.0",
"ora": "^3.4.0",
"p-queue": "6.6.2",
"rimraf": "^5.0.5",
"semver": "^7.3.7",
"simple-git": "^3.4.0",
"tslib": "^2.3.1",
"xml-js": "^1.6.11",
"yaml": "^2.0.0"
},
"devDependencies": {
"@oclif/plugin-help": "^3.2.5",
"@oclif/test": "^1.2.8",
"@salesforce/ts-types": "^2.0.9",
"@types/jsforce": "^1.11.5",
"@types/ora": "^3.2.0",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "5.42.0",
"eslint": "^8.27.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.5.1",
"eslint-plugin-promise": "^6.1.1",
"globby": "^11",
"husky": "^7.0.4",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"oclif": "^4",
"prettier": "^2.6.1",
"standard-version": "^9.3.2",
"ts-node": "^10.4.0",
"typescript": "^5.4.2"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/bin",
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/eon-com/eon-sfdx",
"keywords": [
"sfdx-plugin",
"sfdx",
"salesforce",
"packages"
],
"license": "MIT",
"bin": {
"eon": "./bin/run.js"
},
"oclif": {
"commands": "./lib/commands",
"bin": "eon",
"topics": {
"commit": {
"description": "Interactive CLI to create semantic package versions for Unlocked Packages"
}
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/eon-com/eon-sfdx.git"
},
"scripts": {
"build": "npm run clean && npm run compile",
"clean": "rimraf ./lib && rimraf tsconfig.tsbuildinfo",
"compile": "tsc -b tsconfig.json",
"lint": "eslint src/**/*.ts test/**/*.ts",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint src/**/*.ts test/**/*.ts",
"prepack": "npm run clean && npm run compile",
"test": "nyc --extension .ts --require ts-node/register mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme",
"release": "standard-version"
}
}