-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 2.82 KB
/
package.json
File metadata and controls
106 lines (106 loc) · 2.82 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
{
"name": "@adobe/aio-cli-plugin-runtime",
"description": "Adobe I/O Runtime commands for the Adobe I/O CLI",
"version": "8.1.0",
"author": "Adobe Inc.",
"bugs": "https://github.com/adobe/aio-cli-plugin-runtime/issues",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@adobe/aio-lib-core-config": "^5",
"@adobe/aio-lib-core-networking": "^5",
"@adobe/aio-lib-env": "^3.0.1",
"@adobe/aio-lib-ims": "^8.0.1",
"@adobe/aio-lib-runtime": "^7.1.0",
"@oclif/core": "^2.8.12",
"@types/jest": "^29.5.3",
"chalk": "^4.1.2",
"dayjs": "^1.10.4",
"debug": "^4.1.1",
"inquirer": "^12.3.2",
"js-yaml": "^4",
"lodash.clonedeep": "^4.5.0",
"openwhisk": "^3.21.2",
"openwhisk-fqn": "^0.0.2",
"properties-reader": "2.3.0",
"sha1": "^1.1.1"
},
"devDependencies": {
"@adobe/eslint-config-aio-lib-config": "^4.0.0",
"@babel/core": "^7.16.12",
"@babel/preset-env": "^7.16.11",
"babel-jest": "^29.5.0",
"babel-runtime": "^6.26.0",
"dedent-js": "^1.0.1",
"eol": "^0.10.0",
"eslint": "^8.57.1",
"eslint-config-oclif": "^5.2.2",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-jsdoc": "^48.11.0",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"execa": "^4.0.0",
"jest": "^29.6.2",
"jest-junit": "^16.0.0",
"oclif": "^3.2.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=18"
},
"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",
"topicSeparator": " ",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"repository": "adobe/aio-cli-plugin-runtime",
"scripts": {
"lint-fix": "eslint src test e2e --fix",
"lint": "eslint src test e2e",
"posttest": "npm run lint",
"test": "npm run unit-tests",
"unit-tests": "jest --ci",
"prepack": "oclif manifest && oclif readme --no-aliases",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif readme --no-aliases && 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"
]
}
}