forked from adobe/aio-cli-plugin-app
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 3.09 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
{
"name": "@adobe/aio-cli-plugin-app",
"description": "Create, Build and Deploy Adobe I/O Applications",
"version": "9.2.0",
"author": "Adobe Inc.",
"bugs": "https://github.com/adobe/aio-cli-plugin-app/issues",
"dependencies": {
"@adobe/aio-cli-lib-app-config": "^1.0.0",
"@adobe/aio-cli-lib-console": "^4.0.0",
"@adobe/aio-lib-core-config": "^3.0.0",
"@adobe/aio-lib-core-logging": "^2.0.0",
"@adobe/aio-lib-core-networking": "^3.0.0",
"@adobe/aio-lib-env": "^2.0.0",
"@adobe/aio-lib-ims": "^6.0.0",
"@adobe/aio-lib-runtime": "^5.0.0",
"@adobe/aio-lib-templates": "^2.1.0",
"@adobe/aio-lib-web": "^6.0.1",
"@adobe/generator-aio-app": "^4.0.0",
"@adobe/generator-app-common-lib": "^0.3.3",
"@adobe/inquirer-table-checkbox": "^1.0.1",
"@oclif/core": "^1.15.0",
"@parcel/core": "^2.7.0",
"@parcel/reporter-cli": "^2.7.0",
"ajv": "^6",
"chalk": "^4",
"chokidar": "^3.5.2",
"debug": "^4.1.1",
"dedent-js": "^1.0.1",
"dotenv": "^16",
"execa": "^5.0.0",
"fs-extra": "^10",
"get-port": "^5",
"hjson": "^3.2.1",
"http-terminator": "^3",
"hyperlinker": "^1.0.0",
"inquirer": "^8",
"js-yaml": "^4",
"lodash.clonedeep": "^4.5.0",
"node-fetch": "^2.6.7",
"ora": "^5",
"pure-http": "^3",
"serve-static": "^1.14.1",
"term-size": "^2.2.1",
"upath": "^2",
"which": "^2.0.1",
"yeoman-environment": "^3.2.0"
},
"devDependencies": {
"@adobe/aio-lib-test-proxy": "^1.0.0",
"@adobe/eslint-config-aio-lib-config": "^2.0.0",
"@types/jest": "^28",
"babel-runtime": "^6.26.0",
"codecov": "^3.6.1",
"core-js": "^3",
"eol": "^0.9.1",
"eslint": "^8.22.0",
"eslint-config-standard": "^17",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^23",
"eslint-plugin-jsdoc": "^37",
"eslint-plugin-n": "^15.2.5",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^28",
"jest-plugin-fs": "^2.9.0",
"nock": "^13.2.9",
"oclif": "^3.2.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": "^14.18 || ^16.13 || >=18"
},
"files": [
"bin/run",
"bin/run.cmd",
"bin/openwhisk-standalone-config/",
"oclif.manifest.json",
"src",
"schema/config.schema.json"
],
"homepage": "https://github.com/adobe/aio-cli-plugin-app",
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topicSeparator": " ",
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"repository": "adobe/aio-cli-plugin-app",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint src test",
"prepack": "oclif manifest && oclif readme --no-aliases",
"test": "npm run unit-tests && npm run lint",
"unit-tests": "jest -c jest.config.js",
"version": "oclif readme && git add README.md",
"update-openwhisk-runtimes": "node bin/openwhisk-standalone-config/get-runtimes.js > bin/openwhisk-standalone-config/runtimes.json"
},
"bin": {
"aio-next": "./bin/run"
}
}