forked from adobe/aio-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
103 lines (103 loc) · 2.75 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",
"description": "Adobe I/O Extensible CLI\n\n******* *******\n****** ******\n***** *****\n**** * ****\n*** *** ***\n** ***** **\n* ** *\n",
"version": "2.1.1",
"author": "Adobe Inc.",
"bin": {
"aio": "./bin/run"
},
"bugs": "https://github.com/adobe/aio-cli/issues",
"dependencies": {
"@adobe/aio-cli-plugin-config": "^2.0.2",
"@adobe/aio-cli-plugin-console": "^2.0.3",
"@adobe/aio-cli-plugin-jwt-auth": "^2.0.3",
"@adobe/aio-cli-plugin-runtime": "^1.1.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"
},
"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": "22.16.0",
"eslint-plugin-node": "^9.0.1",
"eslint-plugin-promise": "^4.0.0",
"eslint-plugin-standard": "^4.0.0",
"jest": "^24.9.0",
"jest-junit": "^7.0.0",
"jest-plugin-fs": "^2.9.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/src",
"/oclif.manifest.json"
],
"homepage": "https://github.com/adobe/aio-cli",
"keywords": [
"oclif"
],
"license": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/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"
]
},
"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",
"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"
}