generated from adobe/aio-cli-plugin-boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.98 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 1.98 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
{
"name": "@adobe/aio-cli-plugin-commerce",
"version": "0.7.2",
"dependencies": {
"@adobe/aio-cli-lib-console": "^5.0.1",
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-env": "^3.0.1",
"@adobe/aio-lib-ims": "^7.0.2",
"@inquirer/prompts": "^7.3.2",
"@oclif/core": "^4",
"@oclif/plugin-help": "^6",
"jsdom": "^25.0.1"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4",
"@babel/core": "^7.29.0",
"@babel/eslint-parser": "^7.28.6",
"@jest/globals": "^29",
"eslint": "^8",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-jsdoc": "^50.6.2",
"eslint-plugin-n": "^17.15.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^7.2.1",
"execa": "^8",
"jest": "^29",
"oclif": "^4",
"stdout-stderr": "^0.1.9"
},
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"files": [
"bin/run.js",
"oclif.manifest.json",
"src"
],
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>",
"plugins": [
"@oclif/plugin-help"
]
},
"main": "src/commands/commerce/index.js",
"scripts": {
"lint": "eslint src test e2e",
"posttest": "npm run lint",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --testRegex '.+\\.test\\.js' --ci",
"prepack": "oclif manifest && oclif readme",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif readme && git add README.md",
"e2e": "node --experimental-vm-modules node_modules/jest/bin/jest.js --collectCoverage=false --testRegex 'e2e/e2e.js'"
},
"jest": {
"collectCoverage": true,
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest.setup.js"
]
}
}