build: Updating development dependencies
[T119942Repr.git] / extension.json
blob6fcd63c9d479c8792539acf3e50328182d7772e7
2         "name": "BoilerPlate",
3         "version": "0.0.0",
4         "author": [
5                 "Your Name"
6         ],
7         "url": "https://www.mediawiki.org/wiki/Extension:BoilerPlate",
8         "descriptionmsg": "boilerplate-desc",
9         "license-name": "MIT",
10         "type": "other",
11         "AutoloadClasses": {
12                 "BoilerPlateHooks": "BoilerPlate.hooks.php",
13                 "SpecialHelloWorld": "specials/SpecialHelloWorld.php"
14         },
15         "config": {
16                 "BoilerPlateEnableFoo": true
17         },
18         "ExtensionMessagesFiles": {
19                 "BoilerPlateAlias": "BoilerPlate.i18n.alias.php"
20         },
21         "Hooks": {
22                 "NameOfHook": [
23                         "BoilerPlateHooks::onNameOfHook"
24                 ]
25         },
26         "MessagesDirs": {
27                 "BoilerPlate": [
28                         "i18n"
29                 ]
30         },
31         "ResourceModules": {
32                 "ext.boilerPlate.foo": {
33                         "scripts": [
34                                 "modules/ext.boilerPlate.js",
35                                 "modules/ext.boilerPlate.foo.js"
36                         ],
37                         "styles": [
38                                 "modules/ext.boilerPlate.foo.css"
39                         ],
40                         "messages": [],
41                         "dependencies": []
42                 }
43         },
44         "ResourceFileModulePaths": {
45                 "localBasePath": "",
46                 "remoteExtPath": "examples/BoilerPlate"
47         },
48         "SpecialPages": {
49                 "HelloWorld": "SpecialHelloWorld"
50         },
51         "manifest_version": 1