This repository was archived by the owner on Oct 22, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.47 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.47 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
{
"name": "@adobe/aio-cli-plugin-pgb",
"description": "PhoneGap Build commands for the Adobe I/O CLI",
"version": "1.2.1",
"author": "Adobe Inc.",
"contributors": [
"brett rudd"
],
"bugs": "https://github.com/adobe/aio-cli-plugin-pgb/issues",
"dependencies": {
"@adobe/aio-cli-config": "^1.0.6",
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^2",
"pgb-cli": "^1.1.3"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"codecov": "^3.3.0",
"execa": "^4.0.0",
"chalk": "^3.0.0",
"eslint": "^6.0.0",
"eslint-config-oclif": "^3.1.0",
"eslint-plugin-jest": "^23.0.0",
"eslint-plugin-node": "^11.1.0",
"jest": "^24.0.0",
"stdout-stderr": "^0.1.9"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/oclif.manifest.json",
"/src"
],
"bin": {
"aio-pgb": "./bin/run"
},
"homepage": "https://github.com/adobe/aio-cli-plugin-pgb",
"keywords": [
"oclif-plugin"
],
"license": "Apache-2.0",
"oclif": {
"commands": "./src/commands",
"bin": "aio",
"topics": {
"pgb": {
"description": "Access the PhoneGap Build API"
}
}
},
"repository": "adobe/aio-cli-plugin-pgb",
"scripts": {
"test": "eslint . && jest",
"prepack": "oclif-dev manifest && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"readme": "oclif-dev readme",
"e2e": "jest --collectCoverage=false --testRegex './e2e/e2e.js'"
}
}