This repository was archived by the owner on Oct 30, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.05 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.05 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
{
"name": "@adobe/aio-cli-plugin-ims",
"description": "The IMS plugin to aio supports managing tokens for IMS such as login, logout, and retrieving and using tokens.",
"version": "2.0.0",
"author": "Adobe",
"bugs": "https://github.com/adobe/aio-cli-plugin-ims/issues",
"dependencies": {
"@adobe/aio-lib-ims": "^6.0.1",
"@adobe/aio-lib-ims-jwt": "^4.0.0",
"@adobe/aio-lib-ims-oauth": "^5.0.1",
"@oclif/command": "^1.5.13",
"@oclif/plugin-help": "^2.1.6",
"debug": "^4.1.1",
"hjson": "^3.1.2",
"js-yaml": "^3.13.0"
},
"devDependencies": {
"@adobe/aio-lib-core-config": "^3.1.0",
"@adobe/eslint-config-aio-lib-config": "^2.0.1",
"@oclif/dev-cli": "^1.22.0",
"chalk": "^4.0.0",
"eslint": "^8.46.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.28.0",
"eslint-plugin-jest": "^27.2.3",
"eslint-plugin-jsdoc": "^42.0.0",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"execa": "^4.0.0",
"globby": "^10.0.1",
"jest": "^29",
"jest-junit": "^16.0.0",
"stdout-stderr": "^0.1.9",
"typescript": "^4.9.5"
},
"engines": {
"node": "^14.18 || ^16.13 || >=18"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/adobe/aio-cli-plugin-ims",
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "https://github.com/adobe/aio-cli-plugin-ims",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint src test e2e",
"pretest": "npm run lint",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "npm run unit-tests",
"unit-tests": "jest --config test/jest.config.js --ci",
"version": "oclif-dev readme && git add README.md",
"e2e": "jest --collectCoverage=false --testRegex './e2e/e2e.js'"
}
}