-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·91 lines (91 loc) · 2.61 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
{
"name": "sfdx-autocmplt",
"description": "autocomplete plugin for sfdx",
"version": "2.2.0",
"author": "jayree @jayree",
"bugs": "https://github.com/jayree/sfdx-autocomplete-plugin/issues",
"dependencies": {
"@oclif/config": "^1.14.0",
"@oclif/errors": "^1.2.2",
"@salesforce/command": "^3.0.0",
"@salesforce/core": "^2.2.0",
"chalk": "^3.0.0",
"cli-ux": "^5.4.4",
"debug": "^4.1.1",
"fs-extra": "^8.1.0",
"lodash": "4.17.15",
"tslib": "^1.10.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-help": "^2.2.3",
"@oclif/semantic-release": "^3.1.1",
"@oclif/test": "^1.2.5",
"@salesforce/dev-scripts": "0.4.1",
"@types/fs-extra": "^8.0.1",
"codecov": "^3.6.5",
"husky": "^4.2.3",
"nock": "11.8.2",
"patch-package": "6.2.0",
"tslint": "^6.0.0",
"tslint-config-prettier": "1.18.0",
"tslint-microsoft-contrib": "^6.2.0",
"typescript": "3.7.5"
},
"engines": {
"node": ">=8.4.0"
},
"files": [
"/lib/src",
"/oclif.manifest.json",
"autocomplete",
"/bin/per-env.js",
"yarn.lock"
],
"homepage": "https://github.com/jayree/sfdx-autocomplete-plugin",
"keywords": [
"sfdx-plugin",
"sfdx",
"autocomplete"
],
"license": "MIT",
"oclif": {
"commands": "./lib/src/commands",
"bin": "sfdx",
"hooks": {
"update": "./lib/src/hooks/recache",
"recache": "./lib/src/hooks/recache"
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "jayree/sfdx-autocomplete-plugin",
"scripts": {
"build": "yarn sfdx-build",
"clean": "yarn sfdx-clean",
"clean-all": "yarn sfdx-clean all",
"compile": "yarn sfdx-compile",
"docs": "yarn sfdx-docs",
"format": "yarn sfdx-format",
"lint": "yarn sfdx-lint",
"lint-fix": "yarn sfdx-lint --fix",
"postcompile": "oclif-dev manifest && oclif-dev readme",
"postinstall": "node bin/per-env.js",
"postinstall:development": "yarn patch-package && yarn sfdx-install",
"postpack": "rimraf oclif.manifest.json",
"prepack": "yarn sfdx-build",
"semantic-release": "semantic-release",
"test": "yarn sfdx-test",
"test-without-coverage": "yarn mocha --require source-map-support/register --recursive 'lib/test/**/*test.js'",
"tslint-check": "tslint-config-prettier-check ./tslint.json",
"version": "oclif-dev manifest && oclif-dev readme && git add README.md oclif.manifest.json"
},
"husky": {
"hooks": {
"commit-msg": "yarn sfdx-husky-commit-msg",
"pre-commit": "yarn sfdx-husky-pre-commit",
"pre-push": "yarn sfdx-husky-pre-push"
}
}
}