-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.04 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.04 KB
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
{
"require": {
"samwilson/basildon": "^8"
},
"config": {
"process-timeout": 0
},
"autoload": {
"psr-4": {
"Samwilson\\Hmw\\": "./src"
}
},
"scripts": {
"clean": "rm -r ./cache/",
"build-tree": [
"inkscape --export-type=png --export-filename=assets/tree.png tree/tree.svg",
"inkscape --export-type=pdf --export-filename=assets/tree.pdf tree/tree.svg"
],
"build-templates": "basildon build . --skip",
"build-site": [
"basildon build .",
"pagefind --site output"
],
"build-home": [
"basildon build . --page index --skip",
"pagefind --site output"
],
"build": [
"@build-tree",
"@build-site"
],
"deploy": [
"@build",
"./node_modules/.bin/netlify deploy --prod -d output"
],
"newitem": "./bin/hmw newitem"
},
"require-dev": {
"symfony/var-dumper": "^6.4"
}
}