forked from commercelayer/commercelayer-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
118 lines (118 loc) · 3.15 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
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
{
"name": "@commercelayer/cli",
"description": "Commerce Layer CLI",
"version": "4.4.5",
"author": "Pierluigi Viti <pierluigi@commercelayer.io>",
"bin": {
"commercelayer": "./bin/run",
"cl": "./bin/run",
"clayer": "./bin/run"
},
"bugs": "https://github.com/commercelayer/commercelayer-cli/issues",
"devDependencies": {
"@oclif/dev-cli": "git+https://github.com/pviti/dev-cli.git",
"@oclif/test": "^2.0.3",
"@types/chai": "^4.2.22",
"@types/configstore": "^4.0.0",
"@types/inquirer": "^8.1.3",
"@types/jsonwebtoken": "^8.5.5",
"@types/mocha": "^5.2.7",
"@types/node": "^17.0.4",
"@types/update-notifier": "^5.1.0",
"chai": "^4.3.4",
"eslint": "^5.16.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^10.0.2",
"mocha": "^5.2.0",
"nyc": "^14.1.1",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=12.20"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/commercelayer/commercelayer-cli",
"keywords": [
"oclif",
"ecommerce",
"cli",
"commercelayer"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "commercelayer",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-not-found",
"@oclif/plugin-plugins",
"@oclif/plugin-autocomplete"
],
"hooks": {
"init": [
"./lib/hooks/init/update"
],
"prerun": [
"./lib/hooks/prerun/login",
"./lib/hooks/prerun/plugin"
],
"postrun": [
"./lib/hooks/postrun/save",
"./lib/hooks/postrun/autocomplete"
]
},
"topics": {
"applications": {
"description": "Manage login to CLI applications"
},
"plugins": {
"description": "Manage CLI plugins"
},
"config": {
"description": "Manage CLI configuration",
"hidden": true
}
},
"helpClass": "./lib/help",
"repositoryPrefix": "<%- repo %>/blob/main/<%- commandPath %>",
"additionalHelpFlags": [
"-h"
],
"topicSeparator": " "
},
"repository": "https://github.com/commercelayer/commercelayer-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest && npm run readme",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"readme": "oclif-dev readme --multi && git add README.md && git add docs/*"
},
"types": "lib/index.d.ts",
"dependencies": {
"@commercelayer/cli-core": "^1.3.12",
"@commercelayer/js-auth": "^2.2.4",
"@commercelayer/sdk": "^4.3.0",
"@oclif/core": "^1.3.0",
"@oclif/plugin-autocomplete": "^1.2.0",
"@oclif/plugin-help": "5.1.10",
"@oclif/plugin-not-found": "^2.3.1",
"@oclif/plugin-plugins": "^2.1.0",
"configstore": "^5.0.1",
"inquirer": "^8.2.0",
"lodash": "^4.17.21",
"tslib": "^2.3.1",
"update-notifier": "^5.1.0"
},
"publishConfig": {
"access": "public"
}
}