-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
111 lines (111 loc) · 2.43 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
104
105
106
107
108
109
110
111
{
"name": "go-debug",
"main": "./lib/main",
"version": "1.7.0",
"description": "go debugger using delve for atom",
"keywords": [
"go",
"golang",
"debug",
"debugger",
"delve",
"dlv"
],
"repository": "https://github.com/lloiser/go-debug",
"bugs": {
"url": "https://github.com/lloiser/go-debug/issues"
},
"license": "MIT",
"engines": {
"atom": ">=1.17.0 <2.0.0"
},
"activationHooks": [
"language-go:grammar-used"
],
"dependencies": {
"ansi-to-html": "^0.6.3",
"atom-package-deps": "^4.6.0",
"etch": "^0.12.6",
"json-rpc2": "^1.0.2",
"redux": "^3.7.2",
"semver": "^5.4.1",
"untildify": "^3.0.2"
},
"devDependencies": {
"standard": "^10.0.3"
},
"package-deps": [
"go-plus"
],
"consumedServices": {
"go-config": {
"versions": {
"1.0.0": "consumeGoconfig"
}
},
"go-get": {
"versions": {
"2.0.0": "consumeGoget"
}
}
},
"providedServices": {
"go-plus.view": {
"versions": {
"0.1.0": "provideGoPlusView"
}
}
},
"configSchema": {
"configurationFile": {
"title": "Configuration File",
"description": "Path to the configuration file. Separate multiple paths with commas",
"type": "array",
"items": {
"type": "string"
},
"default": [],
"order": 1
},
"dlvPath": {
"title": "dlv path",
"description": "The path to a dlv executable to use.",
"type": "string",
"default": "",
"order": 2
},
"limitCommandsToGo": {
"title": "Commands available only in go source",
"description": "Determines whether the commands of this package are only available in go source files or in all files.",
"type": "boolean",
"default": true,
"order": 3
},
"panelInitialVisible": {
"title": "Panel Initially Visible",
"description": "Determines whether the panel is initially visible or not.",
"type": "boolean",
"default": false,
"order": 4
},
"clearOutputOnStart": {
"title": "Clear output panel on start",
"type": "boolean",
"default": false,
"order": 5
},
"saveAllFiles": {
"title": "Save all files before starting delve",
"type": "boolean",
"default": false,
"order": 6
}
},
"standard": {
"globals": [
"advanceClock",
"atom",
"waitsForPromise"
]
}
}