-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
103 lines (103 loc) · 2.94 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
{
"name": "@adobe/aio-cli-plugin-app",
"description": "Create, Build and Deploy Adobe I/O Applications",
"version": "8.6.1",
"author": "Adobe Inc.",
"bugs": "https://github.com/adobe/aio-cli-plugin-app/issues",
"dependencies": {
"@adobe/aio-cli-lib-app-config": "^0.2.1",
"@adobe/aio-cli-lib-console": "^3.0.0",
"@adobe/aio-lib-core-config": "^2.0.0",
"@adobe/aio-lib-core-logging": "^1.1.0",
"@adobe/aio-lib-core-networking": "^2.0.0",
"@adobe/aio-lib-env": "^1.1.0",
"@adobe/aio-lib-ims": "^5.0.0",
"@adobe/aio-lib-runtime": "^4.0.0",
"@adobe/aio-lib-web": "^5.1.0",
"@adobe/generator-aio-app": "^3.0.0",
"@oclif/command": "^1.5.11",
"@oclif/config": "^1.12.9",
"@oclif/plugin-help": "^2.2.3",
"@parcel/reporter-cli": "2.0.0-beta.3.1",
"ajv": "^6.12.2",
"chalk": "^4.0.0",
"chokidar": "^3.5.2",
"cli-ux": "^5.4.5",
"debug": "^4.1.1",
"dedent-js": "^1.0.1",
"dotenv": "^8.2.0",
"execa": "^4.0.0",
"fs-extra": "^9.0.0",
"get-port": "^5.1.1",
"hjson": "^3.2.1",
"http-terminator": "^2.0.3",
"inquirer": "^7.0.0",
"js-yaml": "^3.13.1",
"lodash.clonedeep": "^4.5.0",
"node-fetch": "^2.6.0",
"ora": "^4.0.3",
"pure-http": "^2.0.3",
"serve-static": "^1.14.1",
"upath": "^1.2.0",
"which": "^2.0.1",
"yeoman-environment": "^3.2.0"
},
"devDependencies": {
"@adobe/aio-lib-test-proxy": "^1.0.0",
"@adobe/eslint-config-aio-lib-config": "^1.4.0",
"@oclif/dev-cli": "^1.21.3",
"@types/jest": "^26.0.10",
"babel-runtime": "^6.26.0",
"codecov": "^3.6.1",
"eol": "^0.9.1",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^23.20.0",
"eslint-plugin-jsdoc": "^37.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.6.3",
"jest-plugin-fs": "^2.9.0",
"stdout-stderr": "^0.1.9",
"typescript": "^4.5.2"
},
"engineStrict": true,
"engines": {
"node": ">=12.2.0"
},
"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",
"devPlugins": [
"@oclif/plugin-help"
],
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
},
"repository": "adobe/aio-cli-plugin-app",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"lint": "eslint src test",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "npm run unit-tests && npm run lint",
"unit-tests": "jest -c jest.config.js",
"version": "oclif-dev readme && git add README.md"
},
"bin": {
"aio-next": "./bin/run"
}
}