-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
84 lines (84 loc) · 2.21 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
{
"name": "ansible-galaxy-plus",
"main": "./lib/main",
"version": "1.1.4",
"description": "Run Ansible Galaxy commands.",
"repository": "https://github.com/ldez/atom-ansible-galaxy-plus",
"license": "MIT",
"keywords": [
"ansible",
"ansible-galaxy",
"role skeleton"
],
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "~2.2.0",
"fs-plus": "~3.0.0"
},
"devDependencies": {
"coffeelint": "^1.15.0"
},
"configSchema": {
"ansibleGalaxyPath": {
"title": "Ansible Galaxy Path",
"description": "The path of the executable `ansible-galaxy` (e.g. `/usr/bin/` or `/usr/local/bin/`) if not in shell env path.",
"type": "string",
"default": ""
},
"roleSkeleton": {
"title": "Role skeleton",
"type": "object",
"collapsed": false,
"properties": {
"choice": {
"title": "Role Skeleton",
"description": "Choose the skeleton to use.",
"type": "string",
"default": "none",
"enum": [
{
"value": "none",
"description": "No role skeleton"
},
{
"value": "skeleton-a",
"description": "Path A"
},
{
"value": "skeleton-b",
"description": "Path B"
},
{
"value": "skeleton-c",
"description": "Path C"
}
],
"order": 0
},
"skeleton-a": {
"title": "Path A",
"description": "The path of a custom role skeleton path. (`--role-skeleton=<path>`)",
"type": "string",
"default": "",
"order": 1
},
"skeleton-b": {
"title": "Path B",
"description": "The path of a custom role skeleton path. (`--role-skeleton=<path>`)",
"type": "string",
"default": "",
"order": 2
},
"skeleton-c": {
"title": "Path C",
"description": "The path of a custom role skeleton path. (`--role-skeleton=<path>`)",
"type": "string",
"default": "",
"order": 3
}
}
}
}
}