-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.65 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.65 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
{
"name": "@adobe/aio-cli-plugin-certificate",
"version": "2.1.0",
"description": "Generate and validate private certificates, and public key pairs for use with Adobe IO Console",
"repository": "adobe/aio-cli-plugin-certificate",
"homepage": "https://github.com/adobe/aio-cli-plugin-certificate",
"dependencies": {
"@oclif/core": "^4.9.0",
"debug": "^4.3.3",
"fs-extra": "^9.0.0",
"node-forge": "^1.3.0"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^5.0.0",
"eslint": "^9",
"eslint-plugin-jest": "^29",
"eslint-plugin-jsdoc": "^48",
"jest": "^29",
"neostandard": "^0",
"oclif": "^4.0.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=20"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"keywords": [
"oclif-plugin",
"aio-cli-plugin",
"ecosystem:aio-cli-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"main": "src/certificate.js",
"scripts": {
"posttest": "eslint src test",
"test": "npm run unit-tests",
"unit-tests": "jest --ci",
"prepack": "oclif manifest && oclif readme --no-aliases",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif readme && git add README.md"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/jest.setup.js"
]
}
}