-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
28 lines (28 loc) · 959 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
{
"name": "johnshopkins/brand-colors",
"version": "1.2.1",
"autoload": {
"psr-4": {
"JohnsHopkins\\Color\\": "src/"
}
},
"authors": [
{
"name": "Jen Wachter",
"email": "[email protected]"
}
],
"require-dev": {
"johnshopkins/logger": "v3.1.*",
"phpunit/phpunit": "^10.5",
"wp-cli/php-cli-tools": "^0.11.22"
},
"scripts": {
"test": "./vendor/bin/phpunit --bootstrap vendor/autoload.php --display-deprecations --display-notices --display-warnings ./tests/.",
"coverage": "./vendor/bin/phpunit ./tests/. --bootstrap vendor/autoload.php --coverage-html ~/Desktop/report",
"generate-palettes-json": "php ./scripts/generate-palettes.php json && npm run format-json",
"generate-web-colors-json": "php ./scripts/generate-web-colors.php json && npm run format-json",
"print-grades": "php ./scripts/print-grades.php",
"eval-color-grades": "php ./scripts/eval-color-grades.php"
}
}