-
Notifications
You must be signed in to change notification settings - Fork 118
/
composer.json
37 lines (37 loc) · 1.15 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
{
"name": "phase2/particle",
"description": "A system of tools to build design systems in Pattern Lab for Drupal and Grav.",
"type": "drupal-custom-theme",
"license": "GPL-2.0",
"homepage": "https://github.com/phase2/particle",
"authors": [
{
"name": "Christopher Bloom (illepic)",
"email": "[email protected]"
}
],
"require": {
"asm89/twig-lint": "^1.0"
},
"support": {
"docs": "https://phase2.github.io/frontend-docs/",
"issues": "https://github.com/phase2/particle/issues",
"source": "https://github.com/phase2/particle/tree/master"
},
"scripts": {
"twig-lint": [
"twig-lint --ansi --only-print-errors"
],
"cs": "phpcs -p --standard=./vendor/drupal/coder/coder_sniffer/Drupal apps/drupal",
"cbf": "phpcbf -p --standard=./vendor/drupal/coder/coder_sniffer/Drupal apps/drupal",
"php-lint": "parallel-lint apps/drupal",
"test": [
"@php-lint",
"@cs"
]
},
"require-dev": {
"drupal/coder": "^8.3",
"jakub-onderka/php-parallel-lint": "^1.0"
}
}