forked from adobe/aio-cli-plugin-aem
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
98 lines (98 loc) · 2.25 KB
/
package.json
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-aem",
"description": "AEM-related plugins to Adobe I/O CLI",
"version": "1.0.5",
"repository": "adobe/aio-cli-plugin-aem",
"author": "Adobe",
"contributors": [
"Mark Frisbey"
],
"dependencies": {
"@adobe/aem-upload": "1.1.4",
"@oclif/command": "^1",
"@oclif/config": "^1.14.0",
"@oclif/errors": "^1.1.2",
"axios": "^0.26.1",
"debug": "^4.1.0",
"dotenv": "^16.0.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",
"acorn": "^6.4.1",
"chalk": "^2.4.1",
"codecov": "^3.6.5",
"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": "^24.1.0",
"jest-haste-map": "^24.5.0",
"jest-junit": "^6.0.0",
"jest-resolve": "^24.5.0",
"stdout-stderr": "^0.1.13"
},
"peerDependencies": {
"@adobe/aio-cli-plugin-cloudmanager": "^3.0.0"
},
"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"
],
"topics": {
"aem:spa": {
"description": "Configuration for AEM SPA Projects"
}
}
},
"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"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest.setup.js"
]
}
}