This repository has been archived by the owner on Aug 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 18
/
Copy pathpackage.json
97 lines (97 loc) · 2.47 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
{
"name": "websocketmonitor",
"title": "WebSocket Monitor",
"id": "[email protected]",
"description": "Monitor WebSocket connections",
"author": "Firebug Working Group",
"contributors": [
"Jan Odvarko (Mozilla Corp.)",
"Helen V. Holmes (Mozilla Corp.)",
"Florent Fayolle",
"Elad Zelingher",
"Espen Henriksen",
"Tuukka Hastrup"
],
"license": "BSD-3-Clause",
"icon": "chrome://websocketmonitor/skin/icon-32-color.png",
"homepage": "https://github.com/firebug/websocket-monitor/wiki",
"version": "0.6.5",
"main": "lib/index",
"repository": {
"type": "git",
"url": "https://github.com/firebug/websocket-monitor.git"
},
"bugs": {
"url": "https://github.com/firebug/websocket-monitor/issues"
},
"dependencies": {
"firebug.sdk": "0.x",
"keymaster": "^1.6.2"
},
"devDependencies": {
"eslint": "2.10.2",
"eslint-plugin-mozilla": "0.0.3",
"eslint-plugin-react": "5.1.1",
"eslint-watch": "^2.1.11"
},
"scripts": {
"test": "npm run eslint",
"eslint": "eslint data/ chrome/",
"eslint:watch": "esw -w data/**/*.js chrome/"
},
"preferences-branch": "websocketmonitor",
"permissions": {
"multiprocess": true
},
"preferences": [
{
"name": "max_entries",
"title": "Maximum entries displayed",
"description": "Maximum entries displayed in the WebSockets panel",
"type": "integer",
"value": 500
},
{
"name": "tabularView",
"title": "Display frames in a table",
"description": "Display sent and received frames in tabular format",
"type": "bool",
"value": true
},
{
"name": "enableSocketIo",
"title": "Socket.IO support",
"description": "Parse Socket.IO frames",
"type": "bool",
"value": true
},
{
"name": "enableSockJs",
"title": "SockJS support",
"description": "Parse SockJS frames",
"type": "bool",
"value": true
},
{
"name": "enableJson",
"title": "JSON support",
"description": "Parse JSON frames",
"type": "bool",
"value": true
},
{
"name": "enableMqtt",
"title": "MQTT support",
"description": "Parse MQTT frames",
"type": "bool",
"value": true
},
{
"name": "enableQueryString",
"title": "Query string support",
"description": "Parse query string frames (frames that look like foo&bar=baz)",
"type": "bool",
"value": true
}
]
}