-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
51 lines (51 loc) · 1.67 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
{
"name": "drupal/patternkit",
"description": "Patternkit is a Drupal module that lets you drag and drop your theme templates, patterns, and components into layouts, whether using Layout Builder, Panels, or the default Block Layout editor.",
"type": "drupal-module",
"authors": [
{
"name": "Derek Reese",
"email": "[email protected]"
},
{
"name": "Red Hat Inc.",
"email": "[email protected]"
}
],
"license": "MIT",
"require": {
"php": ">=7.4.0",
"ext-json": "*",
"swaggest/json-schema": "^0.12",
"symfony/finder": "^3.4 || ^4.0",
"symfony/yaml": "^3.4 || ^4.0",
"webmozart/path-util": "^2.1.0"
},
"require-dev": {
"drupal/core-recommended": "^9",
"drupal/core-dev": "^9",
"drupal/devel": "^4.1"
},
"extra": {
"drush": {
"services": {
"drush.services.yml": "^9"
}
}
},
"repositories": [],
"scripts": {
"post-autoload-dump": [
"wget -Oq -P js/ --no-check-certificate https://raw.github.com/jdorn/json-editor/master/dist/jsoneditor.min.js",
"wget -Oq -P js/ --no-check-certificate https://raw.github.com/jdorn/json-editor/master/dist/jsoneditor.js"
],
"js:build": [
". ~/.profile && nvm install && nvm use",
"npm install && npx gulp"
]
},
"suggest": {
"drupal/entity_browser": "Improves display for the patternkit_media_library module.",
"drupal/media_entity_browser": "Improves display for the patternkit_media_library module."
}
}