-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 823 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 823 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
{
"name": "stacktrace",
"main": "./lib/main",
"version": "0.0.2",
"description": "Navigate stacktraces within Atom.",
"activationCommands": {
"atom-workspace": [
"stacktrace:paste",
"stacktrace:from-selection"
]
},
"repository": "https://github.com/smashwilson/stacktrace",
"license": "MIT",
"engines": {
"atom": ">=0.185.0 <2.0.0"
},
"dependencies": {
"atom-space-pen-views": "^2.0.5",
"emissary": "^1.2.1",
"event-kit": "^0.7.2",
"jssha": "^1.5.0",
"line-chomper": "^0.4.5",
"underscore-plus": "^1.5.1"
},
"providedServices": {
"stacktrace:trace-handler": {
"description": "Parse all stack traces recognized in sample of text and open a StacktraceView on each.",
"versions": {
"1.0.0": "traceHandlerV1"
}
}
}
}