-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
33 lines (33 loc) · 989 Bytes
/
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
{
"name": "drupal/table_chart",
"description": "Drupal table to chart module, converts html tables to morrisjs charts.",
"type": "drupal-module",
"homepage": "https://www.drupal.org/project/table_chart",
"authors": [
{
"name": "Mathew Winstone (minorOffense)",
"homepage": "https://www.drupal.org/u/minoroffense",
"role": "Maintainer"
}
],
"support": {
"issues": "https://www.drupal.org/project/issues/table_chart",
"source": "http://cgit.drupalcode.org/table_chart"
},
"license": "GPL-2.0+",
"minimum-stability": "dev",
"require": {
"sheillendra/raphael": "*",
"morrisjs/morris.js": "*"
},
"extra": {
"installer-types": ["library"],
"installer-paths": {
"libraries/{$name}": [
"type:drupal-library",
"sheillendra/raphael",
"morrisjs/morris.js"
]
}
}
}