-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
82 lines (82 loc) · 1.74 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
{
"name": "xatom-debug",
"version": "1.6.11",
"author": "Williams Medina <[email protected]>",
"description": "A Simple Debugger for Atom",
"keywords": [
"javascript",
"debugger",
"debug",
"atom",
"repl",
"bugs",
"chrome",
"browser",
"willyelm",
"node",
"breakpoint",
"console"
],
"license": "MIT",
"repository": "https://github.com/willyelm/xatom-debug",
"main": "./lib/Package",
"showWelcome": true,
"scripts": {
"start": "tsc -w"
},
"engines": {
"atom": ">=1.16.0 <2.0.0"
},
"providedServices": {
"xatom-debug": {
"versions": {
"1.0.0": "providePlugin"
}
}
},
"configSchema": {
"toolbarStyle": {
"title": "Toolbar Style",
"description": "Change toolbar panel position.",
"type": "string",
"default": "HeaderPanel",
"enum": [
{
"value": "FooterPanel",
"description": "Footer"
},
{
"value": "HeaderPanel",
"description": "Header"
}
]
},
"showToolbar": {
"title": "Show Toolbar",
"description": "Show debug toolbar when atom starts.",
"type": "boolean",
"default": true
}
},
"package-deps": [
"xatom-debug-nodejs"
],
"deserializers": {
"XAtom/BreakpointNavigatorView": "deserializeBreakpointNavigatorView"
},
"dependencies": {
"atom-package-deps": "^4.6.0",
"lodash": "^4.17.4",
"nedb": "^1.8.0",
"node-pty": "^0.7.0",
"resize-observer-polyfill": "^1.4.2",
"xterm": "^4.1.0"
},
"devDependencies": {
"@types/atom": "0.0.36",
"@types/lodash": "^4.14.74",
"@types/node": "^7.0.43",
"reflect-metadata": "^0.1.10",
"typescript": "^2.5.2"
}
}