-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.55 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
{
"name": "@dx-cli-toolbox/sfdx-toolbox-project-utils",
"description": "Various commands to aid with building of SFDX projects",
"version": "0.0.10",
"author": "John M. Daniel",
"bugs": "https://github.com/ImJohnMDaniel/sfdx-toolbox-project-utils/issues",
"dependencies": {
"@dx-cli-toolbox/sfdx-toolbox-package-utils": "^0.8.0",
"@oclif/config": "^1.18.2",
"@oclif/errors": "^1.3.5",
"@oclif/help": "^1.0.1",
"@oclif/plugin-help": "^5.1.10",
"@salesforce/command": "^4.2.1",
"@salesforce/core": "^2.33.1",
"@salesforce/plugin-apex": "^0.7.0",
"@salesforce/plugin-community": "^1.1.3",
"@salesforce/plugin-data": "^0.6.6",
"@salesforce/plugin-org": "^1.11.0",
"@salesforce/plugin-source": "^1.6.2",
"@salesforce/plugin-user": "^1.7.0",
"salesforce-alm": "^53.7.2",
"tslib": "^2.3.1"
},
"overrides": {
"@salesforce/command": "4.2.1",
"sfdmu": {
"@salesforce/command": "4.2.1"
}
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@oclif/test": "^2.0.3",
"@salesforce/dev-config": "^3.0.0",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.0.0",
"@types/node": "^17.0.2",
"chai": "^4.3.4",
"globby": "^11.0.1",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"ts-node": "^10.4.0",
"tslint": "^6.1.3",
"typescript": "^4.5.4"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/ImJohnMDaniel/sfdx-toolbox-project-utils",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"bin": "sfdx",
"commands": "./lib/commands",
"devPlugins": [
"@oclif/plugin-help"
],
"topics": {
"toolbox": {
"description": "Commands focused on management of SalesforceDX projects"
},
"toolbox:project": {
"description": "Commands focused on building of SalesforceDX projects"
},
"toolbox:project:stage": {
"description": "Commands focused on building of SalesforceDX projects by specific stage"
}
}
},
"repository": "ImJohnMDaniel/sfdx-toolbox-project-utils",
"scripts": {
"lint": "tslint --project . --config tslint.json --format stylish",
"postpack": "rm -f oclif.manifest.json",
"posttest": "tslint -p test -t stylish",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
}
}