-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.28 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.28 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
{
"name": "@adobe/aio-cli-plugin-aem",
"description": "AEM-related plugins to Adobe I/O CLI",
"version": "1.2.0",
"repository": "adobe/aio-cli-plugin-aem",
"author": "Adobe",
"contributors": [
"Mark Frisbey"
],
"dependencies": {
"@adobe/aem-upload": "^2.0.2",
"@oclif/command": "^1",
"@oclif/config": "^1.14.0",
"@oclif/errors": "^1.1.2",
"debug": "^4.1.0",
"hpagent": "^1.2.0",
"mustache": "^3.2.1",
"winston": "^3.2.1"
},
"devDependencies": {
"@oclif/dev-cli": "^1.21.3",
"@oclif/plugin-help": "^2.2.3",
"@oclif/test": "^1",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"acorn": "^6.4.1",
"chalk": "^2.4.1",
"codecov": "^3.6.5",
"conventional-changelog-eslint": "^3.0.9",
"eslint": "^6.8.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "22.9.0",
"eslint-plugin-node": "^9.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^29.5.0",
"jest-haste-map": "^24.5.0",
"jest-junit": "^6.0.0",
"jest-resolve": "^24.5.0",
"stdout-stderr": "^0.1.13"
},
"optionalDependencies": {
"semantic-release": "^21.0.2"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/oclif.manifest.json",
"/src",
"/bin",
"/view"
],
"keywords": [
"oclif-plugin"
],
"bin": {
"aio-aem": "./bin/run"
},
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio-aem",
"devPlugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"posttest": "eslint src test",
"test": "npm run unit-tests",
"unit-tests": "jest --ci",
"prepack": "oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif-dev readme && git add README.md",
"semantic-release": "semantic-release"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest.setup.js"
]
}
}