-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
30 lines (30 loc) · 1.09 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
{
"name": "mignotl/drupal-theme-compiler",
"description": "Scaffolds theme compilation into your Drupal site.",
"authors": [
{
"name": "Lucas Mignot",
"email": "[email protected]"
}
],
"require": {},
"extra": {
"drupal-scaffold": {
"gitignore": false,
"file-mapping": {
"[web-root]/.csslintrc": false,
"[web-root]/.eslintignore": false,
"[web-root]/.eslintrc.json": false,
"[project-root]/.eslintrc.json": "linters/.eslintrc.json",
"[project-root]/.stylelintignore": "linters/.stylelintignore",
"[project-root]/.stylelintrc.json": "linters/.stylelintrc.json",
"[project-root]/gulpfile.js": "compiler/gulpfile.js",
"[project-root]/package-lock.json": "npm/package-lock.json",
"[project-root]/package.json": "npm/package.json",
"[project-root]/.gitignore": {
"append": ".gitignore-append"
}
}
}
}
}