-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 779 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 779 Bytes
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
{
"name": "fabb-dev/pattern-lab-path-src-exporter",
"description": "Exports the patternPathSrc data variable to a file.",
"type": "patternlab-plugin",
"authors": [
{
"name": "Andy Fowlston",
"email": "andy@fabbdev.com"
}
],
"autoload": {
"psr-4": {
"FabbDev\\PatternLab\\PathSrcExporter": "src/"
}
},
"require": {
"ext-json": "*",
"pattern-lab/core": "^2.9"
},
"config": {
"sort-packages": true
},
"extra": {
"patternlab": {
"config": {
"plugins": {
"pathSrcExporter": {
"enabled": true
}
}
}
}
}
}