-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 3.11 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
{
"name": "@rocko1204/rocko-sfdx",
"description": "Salesforce DX (SFDX) commands to support salesforce developments & deployments",
"version": "1.2.1",
"author": "Ronny Rokitta",
"bugs": "https://github.com/Rocko1204/rocko-sfdx/issues",
"dependencies": {
"@oclif/core": "^1.19.1",
"@salesforce/command": "5.2.20",
"@salesforce/core": "^3.31.16",
"@salesforce/kit": "^1.7.1",
"@salesforce/schemas": "^1.1.3",
"@salesforce/source-deploy-retrieve": "^7.0.1",
"@salesforce/ts-types": "^1.5.21",
"chalk": "4.1.2",
"cli-table3": "^0.6.2",
"jsforce": "2.0.0-beta.19",
"simple-git": "^3.4.0"
},
"devDependencies": {
"@oclif/plugin-command-snapshot": "^3.2.9",
"@oclif/plugin-help": "^5",
"@oclif/test": "^2",
"@salesforce/cli-plugins-testkit": "^3.2.2",
"@salesforce/dev-config": "^3.1.0",
"@salesforce/dev-scripts": "^3.1.0",
"@salesforce/plugin-command-reference": "^1",
"@salesforce/prettier-config": "^0.0.2",
"@salesforce/ts-sinon": "^1.4.1",
"@types/debug": "4.1.7",
"@types/globby": "^9.1.0",
"@types/jszip": "^3.4.1",
"@types/xml2js": "^0.4.11",
"@typescript-eslint/eslint-plugin": "^5.42.1",
"@typescript-eslint/parser": "5.42.0",
"chai": "^4.3.6",
"commitizen": "^4.2.4",
"eslint": "^8.27.0",
"eslint-config-prettier": "^8.5.0",
"eslint-config-salesforce": "^1.1.0",
"eslint-config-salesforce-license": "^0.1.6",
"eslint-config-salesforce-typescript": "^1.1.1",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-header": "3.1.1",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jsdoc": "^39.3.25",
"eslint-plugin-n": "^15.5.0",
"eslint-plugin-promise": "^6.1.1",
"husky": "^8.0.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"shelljs": "0.8.5",
"sinon": "14.0.1",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"engines": {
"node": ">=14.0.0"
},
"files": [
"docs",
"lib",
"messages",
"!lib/**/*.map"
],
"homepage": "https://github.com/Rocko1204/rocko-sfdx",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"topics": {
"rocko": {
"description": "Salesforce DX (SFDX) commands to support salesforce developments & deployments",
"external": true,
"subtopics": {
"project": {
"description": "Commands around sfdx-project.json file"
}
}
}
},
"devPlugins": [
"@oclif/plugin-help",
"@oclif/plugin-command-snapshot",
"@salesforce/plugin-command-reference"
]
},
"repository": "github/Rocko1204/rocko-sfdx",
"scripts": {
"build": "tsc -p .",
"lint": "eslint src/**/*.ts test/**/*.ts",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint src/**/*.ts test/**/*.ts",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest",
"test": "nyc --extension .ts --require ts-node/register mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
}
}