-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
128 lines (128 loc) · 3.61 KB
/
package.json
File metadata and controls
128 lines (128 loc) · 3.61 KB
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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "@salesforce/b2c-cli",
"description": "A Salesforce Commerce Cloud B2C CLI",
"version": "0.0.0",
"author": "Charles Lavery",
"bin": {
"b2c": "./bin/run.js"
},
"bugs": "https://github.com/SalesforceCommerceCloud/b2c-cli/issues",
"dependencies": {
"@oclif/core": "^4",
"@oclif/plugin-autocomplete": "^3",
"@oclif/plugin-help": "^6",
"@oclif/plugin-not-found": "^3",
"@oclif/plugin-plugins": "^5",
"@oclif/plugin-version": "^2",
"@salesforce/b2c-tooling-sdk": "workspace:*",
"cliui": "^9.0.1"
},
"devDependencies": {
"@eslint/compat": "^1",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@salesforce/dev-config": "^4.3.2",
"@tony.ganchev/eslint-plugin-header": "^3.1.11",
"@types/chai": "^4",
"@types/mocha": "^10",
"@types/node": "^18",
"c8": "^10.1.3",
"chai": "^4",
"eslint": "^9",
"eslint-config-oclif": "^6",
"eslint-config-prettier": "^10",
"eslint-plugin-prettier": "^5.5.4",
"mocha": "^10",
"oclif": "^4",
"prettier": "^3.6.2",
"shx": "^0.3.3",
"tsx": "^4.20.6",
"typescript": "^5"
},
"engines": {
"node": ">=22.16.0"
},
"files": [
"./bin",
"./dist",
"./oclif.manifest.json"
],
"homepage": "https://github.com/SalesforceCommerceCloud/b2c-cli",
"keywords": [
"SFCC",
"B2C",
"Commerce Cloud",
"CLI",
"Command Line Interface"
],
"license": "MIT",
"main": "dist/index.js",
"type": "module",
"oclif": {
"bin": "b2c",
"dirname": "b2c",
"commands": "./dist/commands",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-not-found",
"@oclif/plugin-version",
"@oclif/plugin-autocomplete"
],
"topicSeparator": " ",
"topics": {
"auth": {
"description": "Manage authentication credentials and tokens"
},
"code": {
"description": "Deploy and manage code versions on instances"
},
"job": {
"description": "Run jobs and import/export site archives"
},
"webdav": {
"description": "WebDAV file operations (ls, get, put, rm, zip, unzip)"
},
"mrt": {
"description": "Manage Managed Runtime projects and deployments",
"subtopics": {
"env-var": {
"description": "Manage environment variables on MRT projects"
}
}
},
"ods": {
"description": "Manage On-Demand Sandboxes"
},
"sites": {
"description": "List and inspect storefront sites"
},
"slas": {
"description": "Manage SLAS API clients and credentials",
"subtopics": {
"client": {
"description": "Manage SLAS client configurations"
}
}
}
}
},
"repository": "SalesforceCommerceCloud/b2c-cli",
"scripts": {
"build": "shx rm -rf dist && tsc -p tsconfig.build.json",
"lint": "eslint",
"format": "prettier --write src",
"format:check": "prettier --check src",
"postpack": "shx rm -f oclif.manifest.json",
"posttest": "pnpm run lint",
"prepack": "oclif manifest && oclif readme",
"pretest": "tsc --noEmit -p test",
"test": "c8 env OCLIF_TEST_ROOT=. mocha --forbid-only \"test/**/*.test.ts\"",
"test:ci": "c8 env OCLIF_TEST_ROOT=. mocha --forbid-only --reporter json --reporter-option output=test-results.json \"test/**/*.test.ts\"",
"test:unit": "env OCLIF_TEST_ROOT=. mocha --forbid-only \"test/**/*.test.ts\"",
"coverage": "c8 report",
"version": "oclif readme && git add README.md",
"dev": "node ./bin/dev.js"
},
"types": "dist/index.d.ts"
}