-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.57 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.57 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
{
"name": "@commercelayer/cli-plugin-cleanups",
"description": "Commerce Layer CLI Cleanups plugin",
"version": "3.2.3",
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
"homepage": "https://github.com/commercelayer/commercelayer-cli-plugin-cleanups",
"repository": "commercelayer/commercelayer-cli-plugin-cleanups",
"bugs": "https://github.com/commercelayer/commercelayer-cli-plugin-cleanups/issues",
"engines": {
"node": ">=20"
},
"files": [
"/bin/run.*",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"keywords": [
"ecommerce",
"cli",
"commercelayer"
],
"license": "MIT",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"oclif": {
"commands": "./lib/commands",
"bin": "cl-cleanups",
"devPlugins": [
"@oclif/plugin-help"
],
"plugins": [],
"topics": {
"cleanups": {
"description": "Cleanup resources from Commerce Layer",
"hidden": false
}
},
"repositoryPrefix": "<%- repo %>/blob/main/<%- commandPath %>",
"additionalHelpFlags": [
"-h"
],
"topicSeparator": ":"
},
"scripts": {
"build": "rm -rf lib && tsc -b",
"prepack": "pnpm build && oclif manifest && pnpm readme",
"postpack": "rm -f oclif.manifest.json",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "pnpm lint",
"readme": "cl-cli-dev readme --plugin --bin=commercelayer && git add README.md",
"lint": "biome check --enforce-assist=true",
"check": "biome check --enforce-assist=true --write",
"release": "pnpm upgrade && pnpm prepack && pnpm postpack && pnpm test"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@commercelayer/cli-dev": "^3.1.1",
"@oclif/plugin-help": "^6.2.44",
"@oclif/test": "^3.2.15",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/cli-progress": "^3.11.6",
"@types/mocha": "^10.0.10",
"@types/node": "^25.6.0",
"@types/node-notifier": "^8.0.5",
"chai": "^6.2.2",
"mocha": "^11.7.5",
"nyc": "^18.0.0",
"oclif": "^4.23.0",
"semantic-release": "^25.0.3",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"dependencies": {
"@commercelayer/cli-core": "^5.11.1",
"@commercelayer/cli-ux": "^1.2.1",
"@commercelayer/sdk": "^6.56.0",
"@oclif/core": "^3.27.0",
"cli-progress": "^3.12.0",
"cli-table3": "^0.6.5",
"node-notifier": "^10.0.1",
"open": "^8.4.2",
"tslib": "^2.8.1"
},
"publishConfig": {
"access": "public"
}
}