-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 4.16 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
{
"_args": [
[
{
"raw": "/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/d-1161010-2180-1nd2fjo/package.tgz",
"scope": null,
"escapedName": null,
"name": null,
"rawSpec": "/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/d-1161010-2180-1nd2fjo/package.tgz",
"spec": "/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/d-1161010-2180-1nd2fjo/package.tgz",
"type": "local"
},
"/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/apm-install-dir-1161010-2180-9fumzp"
]
],
"_from": "../d-1161010-2180-1nd2fjo/package.tgz",
"_id": "console-panel@0.2.0",
"_inCache": true,
"_installable": true,
"_location": "/console-panel",
"_phantomChildren": {},
"_requested": {
"raw": "/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/d-1161010-2180-1nd2fjo/package.tgz",
"scope": null,
"escapedName": null,
"name": null,
"rawSpec": "/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/d-1161010-2180-1nd2fjo/package.tgz",
"spec": "/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/d-1161010-2180-1nd2fjo/package.tgz",
"type": "local"
},
"_requiredBy": [
"#USER"
],
"_resolved": "file:../d-1161010-2180-1nd2fjo/package.tgz",
"_shasum": "72bcd2845ed8ad822717c81d6855768c9582cdd9",
"_shrinkwrap": null,
"_spec": "/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/d-1161010-2180-1nd2fjo/package.tgz",
"_where": "/private/var/folders/cz/fvtg5mds0vbbv3nfgfms83x00000gn/T/apm-install-dir-1161010-2180-9fumzp",
"bugs": {
"url": "https://github.com/spark/console-panel/issues"
},
"dependencies": {
"atom-space-pen-views": "^2.0.3",
"event-kit": "^1.0.0",
"q": "~1.0.1",
"jquery": "2.1.4",
"thera-debug-common-types": "~0.1.7"
},
"description": "Read only log console panel",
"devDependencies": {},
"engines": {
"atom": ">=1.0.0 <2.0.0"
},
"homepage": "https://github.com/spark/console-panel#readme",
"keywords": [],
"license": "MIT",
"main": "./lib/console",
"name": "console-panel",
"optionalDependencies": {},
"providedServices": {
"console-panel": {
"description": "Read only log console",
"versions": {
"1.0.0": "provideConsolePanel"
}
}
},
"consumedServices": {
"thera-service-provider": {
"description": "provide thera debug services",
"versions": {
"1.0.0": "cosumeDebugService"
}
}
},
"readme": "# Atom Console package\n\n**This isn't a terminal**. It's only a log console. Great for showing compilation output, long responses or general logs.\n\n![Screenshot](https://github.com/spark/console-panel/raw/master/resources/screenshot.png)\n\n## Usage\n\nBy itself package doesn't do anything but it provides a service other packages can consume:\n\n`package.json`\n```json\n\"consumedServices\": {\n \"console-panel\": {\n \"versions\": {\n \"^1.0.0\": \"consumeConsolePanel\"\n }\n }\n}\n```\n\n`main.coffee`\n```coffeescript\nconsumeConsolePanel: (@consolePanel) ->\n\nlog: (message) ->\n\t@consolePanel.log(message)\n```\n\n## API reference\n\nWhen consuming console panel you'll get instance of `ConsoleManager` which has following methods:\n\n###### toggle()\nToggles console panel.\n\n###### log(message, level='info')\nLogs a message. `message` can be `String` or a custom `View` that will be appended.\n\n###### error(message)\nLogs an error.\n\n###### warn(message)\nLogs a warning.\n\n###### notice(message)\nLogs a notice.\n\n###### debug(message)\nLogs an debug message.\n\n###### raw(rawText, level='info', lineEnding=\"\\n\")\nLogs a raw message. `rawText` will be split by `lineEnding` and each line will be added separately as `level`.\n\n###### clear()\nClears whole console.\n\n## TODO\n\n* Write specs\n* Add level filtering\n* Show timestamp\n* \"Go to latest\" button\n",
"readmeFilename": "README.md",
"repository": {
"type": "git",
"url": "git+https://github.com/spark/console-panel.git"
},
"---activationCommands": {
"atom-workspace": [
"console:toggle",
"console.targets",
"console:log",
"server:log",
"console:devicelog"
]
},
"version": "0.2.22"
}