-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.8 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.8 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
{
"name": "@adobe/aio-cli-plugin-config",
"description": "Config Plugin for the Adobe I/O CLI",
"version": "5.0.2",
"author": "Adobe Inc.",
"bugs": "https://github.com/adobe/aio-cli-plugin-config/issues",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@inquirer/prompts": "^7.0.0",
"@oclif/core": "^4.0.0",
"hjson": "^3.2.2",
"js-yaml": "^4.1.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^5.0.0",
"acorn": "^8.7.0",
"chalk": "^4.0.0",
"eslint": "^9.0.0",
"eslint-plugin-jest": "^29.0.0",
"neostandard": "^0.13.0",
"eslint-plugin-jsdoc": "^48.11.0",
"execa": "^4.0.2",
"globby": "^11.0.0",
"jest": "^29",
"jest-haste-map": "^29.5.0",
"jest-junit": "^16.0.0",
"jest-resolve": "^29.5.0",
"oclif": "^4.0.0",
"stdout-stderr": "^0.1.13"
},
"engines": {
"node": ">=20"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/adobe/aio-cli-plugin-config",
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"topics": {
"config": {
"description": "get, set, delete, and clear persistent configuration data"
}
},
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"main": "src/index.js",
"repository": "adobe/aio-cli-plugin-config",
"scripts": {
"lint": "eslint src e2e test",
"test": "npm run unit-tests",
"pretest": "npm run lint",
"unit-tests": "jest --ci",
"prepack": "oclif manifest && oclif readme --no-aliases",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif readme && git add README.md",
"e2e": "jest --collectCoverage=false --testRegex './e2e/e2e.js'"
}
}