-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 968 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 968 Bytes
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
{
"name": "debugger",
"main": "./lib/atom-node-debug",
"version": "0.4.6",
"description": "Debug javascript code from right within the editor: set breakpoints, step through code, inspect variable/expression values, etc.",
"keywords": [
"node",
"nodejs",
"debug",
"debugger",
"inspector",
"web inspector",
"node-inspector"
],
"activationCommands": {
"atom-workspace": [
"debugger:connect"
],
"atom-text-editor": [
"debugger:toggle-debug-session"
]
},
"repository": "https://github.com/anandthakker/atom-node-debug",
"license": "MIT",
"engines": {
"atom": ">0.129.0"
},
"dependencies": {
"debug": "^2.0.0",
"mustache": "^0.8.2",
"node-inspector": "^0.7.4",
"q": "^1.0.1",
"request": "^2.44.0",
"text-buffer": "^3.2.7",
"underscore-plus": "^1.5.1",
"ws": "^0.4.32",
"atom-space-pen-views": "^0",
"space-pen": "^4"
},
"devDependencies": {}
}