-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.75 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
{
"name": "hutte",
"description": "CLI for hutte.io",
"version": "0.0.0-development",
"author": "@hutte-io",
"bugs": "https://github.com/hutte-io/hutte-sf-plugin/issues",
"dependencies": {
"@salesforce/sf-plugins-core": "4.0.0",
"chalk": "4.1.2",
"cross-spawn": "7.0.5",
"fuzzy": "0.1.3",
"inquirer": "7.3.3",
"inquirer-autocomplete-prompt": "1.4.0",
"js-yaml": "3.14.1",
"request": "2.88.2"
},
"devDependencies": {
"@salesforce/dev-scripts": "7.1.1",
"@types/cross-spawn": "6.0.4",
"@types/inquirer": "9.0.6",
"@types/js-yaml": "3.12.5",
"@types/request": "2.48.11",
"oclif": "^4.14.29",
"ts-node": "^10.9.2"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"/lib",
"/messages",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://hutte.io",
"keywords": [
"sfdx-plugin",
"sf-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "sf",
"topicSeparator": " ",
"repositoryPrefix": "<%- repo %>/blob/master/<%- commandPath.replace('lib', 'src').replace('.js', '.ts') %>",
"topics": {
"hutte": {
"description": "manage scratch orgs using Hutte"
}
},
"additionalHelpFlags": [
"-h"
]
},
"repository": "hutte-io/hutte-sf-plugin",
"scripts": {
"build": "tsc -p .",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint src/**/*.ts test/**/*.ts",
"prepack": "rm -rf lib && tsc -b && oclif manifest && oclif readme",
"format": "prettier -w src test",
"test": "tsc -p test && nyc --extension .ts mocha --require ts-node/register --timeout 5000 --forbid-only \"test/**/*.test.ts\"",
"version": "oclif readme && git add README.md"
}
}