-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.64 KB
/
package.json
File metadata and controls
98 lines (98 loc) · 2.64 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "@adobe/aio-cli-plugin-events",
"description": "Adobe I/O Events Plugin for the Adobe I/O CLI",
"version": "4.1.0",
"main": "src/index.js",
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"dependencies": {
"@adobe/aio-cli-lib-app-config": "^4",
"@adobe/aio-lib-console": "^5",
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-logging": "^3",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3",
"@adobe/aio-lib-events": "^4",
"@adobe/aio-lib-ims": "^7",
"@oclif/core": "^2.8.12",
"inquirer": "^8.2.5",
"js-yaml": "^4.1.0"
},
"repository": "adobe/aio-cli-plugin-events",
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@types/jest": "^29.5.3",
"acorn": "^8.10.0",
"babel-runtime": "^6.26.0",
"chalk": "^4.0.0",
"eol": "^0.9.1",
"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": "^7.2.0",
"jest": "^29.5.0",
"jest-haste-map": "^29.5.0",
"jest-junit": "^16.0.0",
"jest-resolve": "^29.5.0",
"oclif": "^3.2.0",
"stdout-stderr": "^0.1.13"
},
"engines": {
"node": ">=18",
"npm": ">=7"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"devPlugins": [
"@oclif/plugin-help"
],
"hooks": {
"pre-deploy-event-reg": "./src/hooks/pre-deploy-event-reg.js",
"post-deploy-event-reg": "./src/hooks/post-deploy-event-reg.js",
"pre-undeploy-event-reg": "./src/hooks/pre-undeploy-event-reg.js",
"pre-pack": "./src/hooks/pre-pack-event-reg.js"
}
},
"scripts": {
"posttest": "eslint src test e2e",
"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",
"e2e": "jest --collectCoverage=false --testRegex './e2e/e2e.js'"
},
"jest": {
"collectCoverage": true,
"rootDir": ".",
"coverageThreshold": {
"global": {
"branches": 100,
"lines": 100,
"statements": 100
}
},
"reporters": [
"default"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test/jest.setup.js"
]
}
}