-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
75 lines (75 loc) · 1.84 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
{
"title": "FireQuery",
"name": "firequery",
"version": "2.0.4",
"id": "[email protected]",
"description": "Firefox plugin for jQuery development",
"main": "index.js",
"icon": "chrome://firequery/skin/firequery-icon.png",
"author": "Firebug Working Group",
"contributors": [
"Jan Odvarko (Mozilla Corp.)",
"Alistair Laing",
"Antonin Hildebrand"
],
"homepage": "https://github.com/firebug/firequery/wiki",
"forum": "https://groups.google.com/forum/#!forum/firebug",
"engines": {
"firefox": ">=42.0a1"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "https://github.com/firebug/firequery.git"
},
"dependencies": {
"firebug.sdk": "0.x"
},
"bugs": {
"url": "https://github.com/firebug/firequery/issues"
},
"preferences-branch": "extensions.firebug.firequery",
"preferences": [{
"name": "jQueryURL",
"title": "jQueryURL",
"description": "",
"type": "string",
"value": "chrome://firequery-resources/content/jquery.js"
}, {
"name": "jQueryURLTimeout",
"title": "jQueryURLTimeout",
"description": "",
"type": "integer",
"value": 5000
}, {
"name": "jQueryLintURL",
"title": "jQueryLintURL",
"description": "",
"type": "string",
"value": "chrome://firequery-resources/content/jquery.lint.js"
}, {
"name": "jQueryLintURLTimeout",
"title": "jQueryLintURLTimeout",
"description": "",
"type": "integer",
"value": 5000
}, {
"name": "watcherInterval",
"title": "watcherInterval",
"description": "",
"type": "integer",
"value": 1000
}, {
"name": "maxItemsRendered",
"title": "maxItemsRendered",
"description": "",
"type": "integer",
"value": 400
}, {
"name": "useLint",
"title": "useLint",
"description": "",
"type": "bool",
"value": false
}]
}