-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
52 lines (52 loc) · 1.52 KB
/
composer.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
{
"name": "mattwellss/mustache-theme",
"description": "An example mustache theme",
"license": "MIT",
"type": "magento-module",
"authors": [
{
"name": "Matthew Wells",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "path",
"url": "../mustachetest"
}
],
"require": {
"magento-hackathon/magento-composer-installer": "*",
"mattwellss/magestache": "*@dev",
"koala-framework/composer-extra-assets": "^2.0"
},
"suggest": {
"mattwellss/magento-composer-autoloader": "To support namespace-autoloading"
},
"autoload": {
"psr-0": {
"MattWellss\\Mustache": "."
}
},
"extra": {
"map": [
["design/*", "app/design/frontend/mattwellss/mustache/"],
["mattwellss_mustache_theme.xml", "app/etc/mattwellss_mustache_theme.xml"],
["mustachetheme/*", "../node_modules/mustachetheme/"]
],
"require-npm": {
"@types/backbone": "^1.3.33",
"@types/backbone.marionette": "^0.0.20",
"awesome-typescript-loader": "^3.0.0-beta.17",
"backbone": "1.3.3",
"backbone.marionette": "^3.1.0",
"mustache": "^2.3.0",
"typescript": "^2.1.4",
"underscore": "^1.8.3",
"webpack": "beta",
"webpack-dev-server": "beta"
},
"expose-npm-packages": true,
"magento-root-dir": "ls"
}
}