This repository has been archived by the owner on Aug 6, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
62 lines (62 loc) · 1.91 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
{
"name": "scs-commander",
"version": "4.0.0",
"description": "A CLI tool for interacting with the Shopware Community Store.",
"keywords": [
"shopware",
"shopware community store",
"scs",
"shopware plugin"
],
"bugs": "https://github.com/pickware/scs-commander/issues",
"license": "MIT",
"author": "Pickware GmbH",
"main": "./index.js",
"bin": {
"scs-commander": "./index.js",
"scs-commander-changelog": "./lib/commands/changelog.js",
"scs-commander-compatibility": "./lib/commands/compatibility.js",
"scs-commander-description": "./lib/commands/description.js",
"scs-commander-dump-plugin": "./lib/commands/dumpPlugin.js",
"scs-commander-list": "./lib/commands/list.js",
"scs-commander-upload": "./lib/commands/upload.js"
},
"directories": {
"lib": "./lib"
},
"repository": "pickware/scs-commander",
"scripts": {
"cspell": "cspell '**/*.js' README.md .scs-commander.dist .github/CODEOWNERS",
"eslint": "eslint .",
"eslint:fix": "eslint --fix .",
"start": "node ."
},
"dependencies": {
"axios": "^0.21.1",
"chalk": "^4.1.0",
"cli-spinner": "^0.2.10",
"cli-table": "^0.3.6",
"co": "^4.6.0",
"co-prompt": "^1.0.0",
"commander": "^7.2.0",
"concat-stream": "^2.0.0",
"diff": "^5.0.0",
"dotenv": "^9.0.1",
"exponential-backoff": "^3.1.0",
"form-data": "^4.0.0",
"jszip": "^3.6.0",
"marked": "^2.0.3",
"mz": "^2.4.0",
"node-notifier": "^9.0.1",
"semver": "^7.3.5"
},
"devDependencies": {
"cspell": "^5.4.0",
"eslint-plugin-filenames": "^1.3.2",
"viison-style-guide": "git+https://github.com/pickware/style-guide.git"
},
"engines": {
"node": ">=18.0.0"
},
"preferGlobal": true
}