-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
167 lines (167 loc) · 4.65 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
{
"name": "firebug",
"title": "Firebug",
"id": "[email protected]",
"description": "Next Firebug generation built on top of native Firefox developer tools",
"version": "3.0.0-beta.3",
"author": "Firebug Working Group",
"contributors": [
"Jan Odvarko (Mozilla Corp.)",
"Sebastian Zartner",
"Florent Fayolle",
"Simon Lindholm",
"Thomas Andersen",
"Belakhdar Abdeldjalil",
"Aakash Tyagi",
"Farshid Beheshti",
"Jakob Kaltenbrunner",
"Nicolas Joseph",
"Kartik Maji",
"Erik Vold",
"Alistair Laing",
"Aakash Tyagi"
],
"engines": {
"firefox": ">=44.0a2 <=*"
},
"updateURL": "https://getfirebug.com/releases/firebug/3.0/update.rdf",
"icon": "chrome://firebug/skin/firebugBig.png",
"license": "BSD-3-Clause",
"homepage": "https://getfirebug.com/",
"main": "lib/index",
"repository": {
"type": "git",
"url": "https://github.com/firebug/firebug.next.git"
},
"bugs": {
"url": "https://github.com/firebug/firebug.next/issues"
},
"dependencies": {
"firebug.sdk": "0.x"
},
"devDependencies": {
"addon-httpd": "0.x"
},
"preferences-branch": "firebug",
"preferences": [{
"name": "debugStartup",
"title": "Execute start-up sequence for debugging",
"description": "Allows performing custom startup sequence useful when debugging",
"type": "bool",
"value": false
}, {
"name": "stringCropLength",
"title": "String cropping",
"description": "Default length limit for cropped strings",
"type": "integer",
"value": 50
}, {
"name": "displayedAttributeValueLimit",
"title": "Attribute value length",
"description": "Maximal number of characters for displayed attribute values inside HTML Panel",
"type": "integer",
"value": 1024
}, {
"name": "ObjectLongIteratorMax",
"title": "Long iterator limit",
"description": "How many properties to show in long object summaries",
"type": "integer",
"value": 25
}, {
"name": "ObjectShortIteratorMax",
"title": "Short iterator limit",
"description": "How many properties to show in short object summaries",
"type": "integer",
"value": 3
}, {
"name": "useDefaultLocale",
"title": "Use (en-US) locale",
"description": "Disregard the current Firefox locale and use (en-US) locale as default.",
"type": "bool",
"value": false
}, {
"name": "env",
"title": "Environment mode",
"description": "Set to 'production' by default, but you can use 'development' to get extra features for Firebug developers",
"type": "string",
"value": "production"
}, {
"name": "netResponseHeadersVisible",
"title": "netResponseHeadersVisible",
"description": "",
"type": "bool",
"value": true
}, {
"name": "netRequestHeadersVisible",
"title": "netRequestHeadersVisible",
"description": "",
"type": "bool",
"value": true
}, {
"name": "netCachedHeadersVisible",
"title": "netCachedHeadersVisible",
"description": "",
"type": "bool",
"value": false
}, {
"name": "netPostRequestHeadersVisible",
"title": "netPostRequestHeadersVisible",
"description": "",
"type": "bool",
"value": false
}, {
"name": "netParamNameLimit",
"title": "netParamNameLimit",
"description": "",
"type": "integer",
"value": 25
}, {
"name": "netDisplayedResponseLimit",
"title": "netDisplayedResponseLimit",
"description": "",
"type": "integer",
"value": 102400
}, {
"name": "textWrapWidth",
"title": "textWrapWidth",
"description": "",
"type": "integer",
"value": 100
}, {
"name": "sortJsonPreview",
"title": "sortJsonPreview",
"description": "",
"type": "bool",
"value": false
}, {
"name": "netSortPostParameters",
"title": "netSortPostParameters",
"description": "",
"type": "bool",
"value": true
}, {
"name": "sizePrecision",
"title": "sizePrecision",
"description": "",
"type": "integer",
"value": 1
}, {
"name": "netDisplayedPostBodyLimit",
"title": "netDisplayedPostBodyLimit",
"description": "",
"type": "integer",
"value": 10240
}, {
"name": "replaceTabs",
"title": "Number of spaces for displaying tabs",
"description": "The number of spaces used for displaying tabs inside the Script panel",
"type": "integer",
"value": 4
}, {
"name": "allPagesActivation",
"title": "allPagesActivation",
"description": "",
"type": "string",
"value": "none"
}]
}