-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
96 lines (96 loc) · 3.11 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
{
"name": "@adobe/aio-cli-plugin-aem-cloud-service-migration",
"description": "AEM Cloud Service Migration commands for the Adobe I/O CLI",
"version": "1.2.5",
"repository": "adobe/aio-cli-plugin-aem-cloud-service-migration",
"author": "Adobe Inc.",
"license": "Apache-2.0",
"homepage": "https://github.com/adobe/aio-cli-plugin-aem-cloud-service-migration",
"bugs": "https://github.com/adobe/aio-cli-plugin-aem-cloud-service-migration/issues",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@adobe/aio-lib-core-config": "^2.0.0",
"@adobe/aio-lib-core-logging": "^1.1.0",
"@adobe/aem-cs-source-migration-dispatcher-converter": "^1.5.1",
"@adobe/aem-cs-source-migration-commons": "^0.0.5",
"@adobe/aem-cs-source-migration-repository-modernizer": "^1.2.2",
"@adobe/aem-cs-source-migration-index-converter": "^0.2.1",
"@oclif/command": "^1.6.1",
"@oclif/config": "^1.15.1",
"@oclif/errors": "^1.1.2",
"js-yaml": "^3.14.0",
"yaml": "^1.10.0",
"axios-mock-adapter": "^1.19.0",
"axios": "^0.21.1"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^1.2.0",
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^2",
"acorn": "^7",
"chalk": "^4",
"eslint": "^6.2.2",
"eslint-config-oclif": "^3.1.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-jsdoc": "^21.0.0",
"eslint-plugin-node": "^10.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"execa": "^4",
"jest": "^24",
"jest-haste-map": "^24.5.0",
"jest-junit": "^6.0.0",
"jest-resolve": "^24.5.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"keywords": [
"oclif-plugin"
],
"oclif": {
"commands": "./src/commands",
"bin": "./bin/run",
"devPlugins": [
"@oclif/plugin-help"
],
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"main": "src/index.js",
"scripts": {
"pretest": "eslint src test e2e",
"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",
"e2e": "jest --collectCoverage=false --testRegex './e2e/e2e.js'"
},
"jest": {
"collectCoverage": true,
"testPathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"coveragePathIgnorePatterns": [
"<rootDir>/tests/fixtures/"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./jest.setup.js"
],
"clearMocks": true
}
}