-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
54 lines (54 loc) · 1.26 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
52
53
54
{
"name": "carbon/pipeline",
"description": "Ultra-fast build stack for Neos CMS based on esbuild and PostCSS",
"type": "neos-build",
"license": "MIT",
"keywords": [
"neos",
"esbuild",
"CSS",
"PostCSS",
"Tailwind",
"Sass",
"JavaScript",
"TypeScript",
"Vue",
"React",
"Preact",
"Svelte"
],
"autoload": {
"psr-4": {
"Carbon\\Pipeline\\": "Classes/"
}
},
"authors": [
{
"name": "Jon Uhlmann",
"email": "[email protected]",
"homepage": "https://www.uhlmann.pro"
}
],
"archive": {
"exclude": [
"/.github",
"/.editorconfig",
"/.gitattributes",
"/.gitignore",
"/NPM",
"/Test",
"/CODE_OF_CONDUCT.md",
"/LICENSE",
"/Makefile",
"/package-lock.json",
"/pnpm-lock.yaml",
"/yarn.lock"
]
},
"extra": {
"neos/flow": {
"post-update": "Carbon\\Pipeline\\Composer::postPackageUpdateAndInstall",
"post-install": "Carbon\\Pipeline\\Composer::postPackageUpdateAndInstall"
}
}
}