-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 2.46 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 2.46 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
99
100
101
102
103
104
105
106
107
{
"name": "@adobe/aio-cli-plugin-telemetry",
"description": "Adobe Developer cli telemetry",
"version": "2.0.3",
"author": "Adobe Inc.",
"bugs": "https://github.com/adobe/aio-cli-plugin-telemetry/issues",
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-networking": "^5.0.4",
"@oclif/core": "^4",
"ci-info": "^4.0.0",
"debug": "^4.1.1",
"inquirer": "^8.2.1",
"os-name": "^4.0.1",
"splunk-logging": "^0.11.1"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "5.0.0",
"eslint": "^9",
"eslint-plugin-jest": "^28",
"eslint-plugin-jsdoc": "^48",
"neostandard": "^0",
"execa": "^4.0.2",
"jest": "^29",
"jest-fetch-mock": "^3.0.0",
"jest-junit": "^13.0.0",
"memfs": "^4.6.0",
"oclif": "^4.3.6",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=20"
},
"files": [
"/npm-shrinkwrap.json",
"/oclif.manifest.json",
"/src",
"/yarn.lock"
],
"homepage": "https://github.com/adobe/aio-cli-plugin-telemetry",
"repository": "adobe/aio-cli-plugin-telemetry",
"keywords": [
"ecosystem:@adobe/aio-cli-plugin",
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"devPlugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": [
"./src/hooks/init"
],
"command_error": [
"./src/hooks/command-error"
],
"prerun": [
"./src/hooks/prerun"
],
"postrun": [
"./src/hooks/postrun"
],
"command_not_found": [
"./src/hooks/command-not-found"
],
"telemetry": [
"./src/hooks/telemetry"
]
}
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"functions": 100,
"lines": 100,
"statements": 100
}
},
"testPathIgnorePatterns": [
"<rootDir>/test/jest.setup.js"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test/jest.setup.js"
]
},
"scripts": {
"prepack": "oclif manifest && oclif readme --no-aliases",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif readme && git add README.md",
"lint": "eslint src test",
"test": "jest --ci && npm run lint"
}
}