-
Notifications
You must be signed in to change notification settings - Fork 0
/
extension.json
46 lines (46 loc) · 1012 Bytes
/
extension.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
{
"name": "Argdown",
"author": [
"James Harris"
],
"url": "https://github.com/DawnPaladin/Argdown-for-MediaWiki",
"description": "Argument mapping for MediaWiki",
"version": "1.0.5",
"license-name": "MIT",
"type": "tag",
"requires": {
"MediaWiki": ">= 1.32.0"
},
"AutoloadClasses": {
"Argdown": "wiki_plugin.php"
},
"AutoloadNamespaces": {
},
"config": {
"NodeJsPath": {
"value": "/usr/local/bin/node",
"description": "Path to the Node.js executable",
"public": true
}
},
"ConfigRegistry": {
"Argdown": "GlobalVarConfig::newInstance"
},
"Hooks": {
"ParserFirstCallInit": "Argdown::onParserFirstCallInit",
"BeforePageDisplay": "Argdown::onBeforePageDisplay"
},
"ResourceFileModulePaths": {
"localBasePath": "resources",
"remoteExtPath": "Argdown/resources"
},
"ResourceModules": {
"ext.Argdown": {
"dependencies": [],
"messages": [],
"styles": ["argdown.css"],
"scripts": ["toolbarButton.js", "maximizeButton.js"]
}
},
"manifest_version": 2
}