-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
159 lines (159 loc) · 4.7 KB
/
package.json
File metadata and controls
159 lines (159 loc) · 4.7 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
{
"name": "@salesforce/b2c-cli",
"description": "A Salesforce Commerce Cloud B2C CLI",
"version": "0.0.1-preview",
"author": "Charles Lavery",
"bin": {
"b2c": "./bin/run.js"
},
"bugs": "https://github.com/SalesforceCommerceCloud/b2c-developer-tooling/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",
"marked": "^15.0.0",
"marked-terminal": "^7.3.0",
"open": "^11.0.0"
},
"bundleDependencies": [
"@oclif/core",
"@oclif/plugin-autocomplete",
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-plugins",
"@oclif/plugin-version",
"@salesforce/b2c-tooling-sdk",
"cliui",
"marked",
"marked-terminal"
],
"devDependencies": {
"@eslint/compat": "^1",
"@oclif/prettier-config": "^0.2.1",
"@oclif/test": "^4",
"@salesforce/dev-config": "^4.3.2",
"@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-header": "^3.1.1",
"eslint-plugin-prettier": "^5.5.4",
"execa": "^9.6.1",
"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://salesforcecommercecloud.github.io/b2c-developer-tooling",
"keywords": [
"SFCC",
"B2C",
"Commerce Cloud",
"CLI",
"Command Line Interface"
],
"license": "Apache-2.0",
"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"
},
"docs": {
"description": "Search and read Script API documentation"
},
"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"
}
}
},
"scapi": {
"description": "Manage Salesforce Commerce APIs (SCAPI)",
"subtopics": {
"custom": {
"description": "Manage Custom API endpoints"
},
"schemas": {
"description": "Browse and retrieve SCAPI schema specifications"
}
}
}
}
},
"repository": "SalesforceCommerceCloud/b2c-developer-tooling",
"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 --exclude \"test/functional/e2e/**\" \"test/**/*.test.ts\"",
"test:ci": "c8 env OCLIF_TEST_ROOT=. mocha --forbid-only --exclude \"test/functional/e2e/**\" --reporter json --reporter-option output=test-results.json \"test/**/*.test.ts\"",
"test:unit": "env OCLIF_TEST_ROOT=. mocha --forbid-only --exclude \"test/functional/e2e/**\" \"test/**/*.test.ts\"",
"test:e2e": "env OCLIF_TEST_ROOT=. mocha --forbid-only --reporter json --reporter-option output=test-results.json \"test/functional/e2e/**/*.test.ts\"",
"coverage": "c8 report",
"version": "oclif readme && git add README.md",
"dev": "node ./bin/dev.js"
},
"types": "dist/index.d.ts"
}