forked from adobe/aio-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.2 KB
/
package.json
File metadata and controls
116 lines (116 loc) · 3.2 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
107
108
109
110
111
112
113
114
115
116
{
"name": "@adobe/aio-cli",
"description": "Adobe I/O Extensible CLI\n\n******* *******\n****** ******\n***** *****\n**** * ****\n*** *** ***\n** ***** **\n* ** *\n",
"version": "3.0.0",
"author": "Adobe Inc.",
"bin": {
"aio": "./bin/run",
"adobe": "./bin/run"
},
"bugs": "https://github.com/adobe/aio-cli/issues",
"dependencies": {
"@adobe/aio-cli-plugin-app": "^1.0.0",
"@adobe/aio-cli-plugin-auth": "^1.0.6",
"@adobe/aio-cli-plugin-certificate": "^0.1.0",
"@adobe/aio-cli-plugin-config": "^2.2.1",
"@adobe/aio-cli-plugin-console": "^2.0.4",
"@adobe/aio-cli-plugin-jwt-auth": "^2.0.3",
"@adobe/aio-cli-plugin-runtime": "^1.4.0",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-autocomplete": "^0.1.2",
"@oclif/plugin-help": "^2.1.4",
"@oclif/plugin-not-found": "^1.2.0",
"@oclif/plugin-plugins": "^1.2.0",
"chalk": "^2.4.2",
"inquirer": "^7.0.1",
"node-fetch": "^2.5.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"acorn": "^7.0.0",
"codecov": "^3.2.0",
"eslint": "^6.0.1",
"eslint-config-oclif": "^1",
"eslint-config-standard": "^13.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-jest": "23.2.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"jest-fetch-mock": "^3.0.0",
"jest-junit": "^10.0.0",
"jest-plugin-fs": "^2.9.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/src",
"/oclif.manifest.json",
"/package-lock.json"
],
"homepage": "https://github.com/adobe/aio-cli",
"keywords": [
"oclif"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-plugins",
"@oclif/plugin-autocomplete",
"@oclif/plugin-not-found",
"@adobe/aio-cli-plugin-config",
"@adobe/aio-cli-plugin-jwt-auth",
"@adobe/aio-cli-plugin-console",
"@adobe/aio-cli-plugin-runtime",
"@adobe/aio-cli-plugin-app",
"@adobe/aio-cli-plugin-auth",
"@adobe/aio-cli-plugin-certificate"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"coverageThreshold": {
"global": {
"branches": 100,
"lines": 100,
"statements": 100
}
},
"testPathIgnorePatterns": [
"<rootDir>/test/jest.setup.js"
],
"reporters": [
"default",
"jest-junit"
],
"testEnvironment": "node",
"setupFilesAfterEnv": [
"<rootDir>/test/jest.setup.js"
]
},
"repository": "adobe/aio-cli",
"scripts": {
"postpack": "rm -f oclif.manifest.json",
"test": "jest --ci",
"posttest": "npm run eslint",
"eslint": "eslint src test",
"gen-health": "node bin/gen-health-table.js",
"prepack": "oclif-dev manifest && oclif-dev readme",
"version": "oclif-dev readme && git add README.md",
"link": "ln -s \"$(pwd)\"/bin/run /usr/local/bin/aio",
"unlink": "rm /usr/local/bin/aio"
},
"types": "lib/index.d.ts"
}