-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 883 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 883 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
{
"name": "drupal-canvas-dev",
"version": "0.0.1",
"description": "An opinionated development environment for brewing Drupal Canvas",
"repository": {
"type": "git",
"url": "git+https://github.com/balintbrews/drupal-canvas-dev.git"
},
"author": "Bálint Kléri (https://balintbrews.com)",
"license": "GPL-2.0-or-later",
"bugs": {
"url": "https://github.com/balintbrews/drupal-canvas-dev/issues"
},
"homepage": "https://github.com/balintbrews/drupal-canvas-dev#readme",
"devDependencies": {
"npm-run-all": "^4.1.5",
"prettier": "^3.6.2"
},
"scripts": {
"code:check": "run-s -c -n code:check:**",
"code:check:prettier": "npm run s:prettier -- --check",
"code:fix": "run-s -c -n code:fix:**",
"code:fix:prettier": "npm run s:prettier -- --write",
"s:prettier": "prettier \"**/*.{code-workspace,json,md,yml,yaml}\""
}
}