-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 2.22 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
{
"name": "sfdx-jeff-hook-plugins",
"description": "Salesforce CLI hooks to perform deployment of package after org creation made by Jeferson Chaves.",
"version": "0.1.2",
"author": "Jeferson Chaves",
"bugs": "https://github.com/jefersonchaves/sfdx-jeff-hook-plugins/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/errors": "^1",
"@salesforce/command": "^3",
"@salesforce/core": "^2",
"@salesforce/ts-types": "^1.4.3",
"cli-ux": "^5.5.0",
"lookpath": "^1.1.0",
"tslib": "^2"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^3",
"@oclif/test": "^1",
"@salesforce/dev-config": "2.1.0",
"@salesforce/prettier-config": "^0.0.1",
"@salesforce/ts-sinon": "^1.2.3",
"@types/chai": "^4",
"@types/mocha": "^8",
"@types/node": "^10",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4",
"eslint": "^7.9.0",
"eslint-config-prettier": "^8.2.0",
"eslint-config-salesforce": "^0.1.0",
"eslint-config-salesforce-typescript": "^0.2.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jsdoc": "^32.3.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8",
"nyc": "^15",
"prettier": "^2.1.1",
"ts-node": "^9",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/jefersonchaves/sfdx-jeff-hook-plugins",
"keywords": [
"sfdx-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sfdx",
"hooks": {
"postorgcreate": "./lib/hooks/postorgcreate/installPackages"
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "jefersonchaves/sfdx-jeff-hook-plugins",
"scripts": {
"lint": "eslint . --ext .ts",
"postpack": "rm -f oclif.manifest.json",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && oclif-dev readme",
"test": "rm -rf lib && tsc -b && nyc mocha --forbid-only 'test/**/*.ts'",
"version": "oclif-dev readme && git add README.md"
}
}