forked from adobe/aio-cli-plugin-runtime
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.85 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
99
100
101
102
103
104
105
106
107
108
109
{
"name": "@adobe/aio-cli-plugin-runtime",
"description": "Adobe I/O Runtime commands for the Adobe I/O CLI",
"version": "5.3.0",
"author": "Adobe Inc.",
"bugs": "https://github.com/adobe/aio-cli-plugin-runtime/issues",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@adobe/aio-lib-core-config": "^2.0.0",
"@adobe/aio-lib-core-networking": "^2.0.0",
"@adobe/aio-lib-runtime": "^3.4.0",
"@oclif/command": "^1.5.6",
"@oclif/config": "^1.9.0",
"@oclif/errors": "^1.1.2",
"@oclif/plugin-help": "^2.1.6",
"@types/jest": "^26.0.10",
"chalk": "^4.0.0",
"cli-ux": "^5.2.0",
"dayjs": "^1.10.4",
"debug": "^4.1.1",
"inquirer": "^7.3.3",
"js-yaml": "^3.13.1",
"lodash.clonedeep": "^4.5.0",
"openwhisk": "^3.21.2",
"openwhisk-fqn": "^0.0.2",
"properties-reader": "2.2.0",
"sha1": "^1.1.1"
},
"devDependencies": {
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"babel-jest": "^27.0.1",
"babel-runtime": "^6.26.0",
"dedent-js": "^1.0.1",
"eol": "^0.9.1",
"eslint": "^6.0.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jest": "^23.0.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"execa": "^4.0.0",
"jest": "^24.9.0",
"jest-junit": "^10.0.0",
"jest-plugin-fs": "^2.9.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/oclif.manifest.json",
"/src"
],
"homepage": "https://github.com/adobe/aio-cli-plugin-runtime",
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"devPlugins": [
"@oclif/plugin-help"
],
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"repository": "adobe/aio-cli-plugin-runtime",
"scripts": {
"eslint-fix": "eslint src test e2e --fix",
"posttest": "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,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"lines": 100,
"statements": 100
}
},
"testPathIgnorePatterns": [
"<rootDir>/jest.setup.js"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./test/jest.setup.js"
]
}
}