-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
68 lines (68 loc) · 2.04 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
{
"name": "@adobe/aio-cli-plugin-auth",
"description": "The IMS plugin to aio supports managing tokens for IMS such as login, logout, and retrieving and using tokens.",
"version": "4.0.1",
"author": "Adobe",
"bugs": "https://github.com/adobe/aio-cli-plugin-auth/issues",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-ims": "^7",
"@oclif/core": "2.8.12",
"debug": "^4.1.1",
"hjson": "^3.1.2",
"js-yaml": "^4.1.0",
"ora": "^4.0.3"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"chalk": "^4.0.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^4.0.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^5.0.0",
"execa": "^4.0.0",
"jest": "^29",
"jest-junit": "^16.0.0",
"oclif": "^3.2.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=18"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/adobe/aio-cli-plugin-auth",
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"hooks": {
"init": "./src/hooks/upgrade-config-hook.js"
},
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"repository": "https://github.com/adobe/aio-cli-plugin-auth",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint src test e2e",
"pretest": "npm run lint",
"prepack": "oclif manifest && oclif readme --no-aliases",
"test": "npm run unit-tests",
"unit-tests": "jest --config test/jest.config.js ---ci -w=2",
"version": "oclif readme && git add README.md",
"e2e": "jest --collectCoverage=false --testRegex './e2e/e2e.js'"
}
}