forked from firebug/firebug.next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.53 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
{
"name": "firebug",
"title": "Firebug",
"id": "[email protected]",
"description": "Next Firebug generation built on top of native Firefox developer tools",
"version": "3.0.0-alpha.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"
],
"engines": {
"firefox": ">=35.0a2 <=*"
},
"updateURL": "https://getfirebug.com/releases/firebug/3.0/update.rdf",
"icon": "chrome://firebug/skin/firebugBig.png",
"license": "BSD License",
"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"
},
"devDependencies": {
"addon-httpd": "0.0.1"
},
"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": "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
}]
}