-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 3.24 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 3.24 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "emulsify-wordpress",
"version": "2.0.0",
"description": "Timber-first WordPress parent theme that generates child themes with Emulsify Core 4, Vite, Storybook, and Twig",
"engines": {
"node": ">=24.10"
},
"keywords": [
"component library",
"design system",
"wordpress",
"pattern library",
"storybook",
"styleguide"
],
"author": "Four Kitchens <shout@fourkitchens.com>",
"license": "GPL-2.0-only",
"repository": {
"type": "git",
"url": "git+https://github.com/emulsify-ds/emulsify-wordpress.git"
},
"bugs": {
"url": "https://github.com/emulsify-ds/emulsify-wordpress/issues"
},
"homepage": "https://www.emulsify.info",
"scripts": {
"husky:commit-msg": "commitlint --edit $1",
"husky:pre-commit": "npm run lint",
"docs:check-commands": "node .github/scripts/docs-command-check.cjs",
"lint": "npm run lint:php",
"lint:php": "vendor/bin/phpcs -q && vendor/bin/phpstan analyse --no-progress --memory-limit=1G",
"lint:php:fix": "vendor/bin/phpcbf",
"lint-staged": "lint-staged",
"prepare": "[ -d '.git' ] && (husky install) || true",
"pr:check": "node .github/scripts/pr-validation.cjs",
"release:check": "node .github/scripts/release-check.cjs",
"smoke:acf-json": "php .github/scripts/acf-local-json-smoke.php",
"smoke:asset-manifest": "php .github/scripts/asset-manifest-smoke.php",
"smoke:attributes": "php .github/scripts/attribute-helper-smoke.php",
"smoke:block-assets": "php .github/scripts/block-scoped-assets-smoke.php",
"smoke:bootstrap-loader": "php .github/scripts/bootstrap-loader-smoke.php",
"smoke:child-theme-generator": "php .github/scripts/child-theme-generator-smoke.php",
"smoke:component-locator": "php .github/scripts/component-locator-smoke.php",
"smoke:core-block-twig": "php .github/scripts/core-block-twig-renderer-smoke.php",
"smoke:editor-enhancements": "php .github/scripts/editor-enhancements-smoke.php",
"smoke:editor-policy": "php .github/scripts/editor-policy-smoke.php",
"smoke:patterns": "php .github/scripts/pattern-registry-smoke.php",
"smoke:starter-init": "node .github/scripts/wordpress-starter-init-smoke.cjs",
"smoke:theme-filters": "php .github/scripts/theme-filters-smoke.php",
"smoke:twig-autoescape": "php .github/scripts/twig-autoescape-smoke.php",
"smoke:twig-switch": "php .github/scripts/twig-switch-smoke.php",
"smoke:twig-project-namespace": "php .github/scripts/twig-project-namespace-smoke.php",
"whisk:build": "npm --prefix whisk run build",
"whisk:install": "npm --prefix whisk install --package-lock=false --ignore-scripts",
"build:dist": "bash scripts/build-dist.sh",
"publish": "node .github/scripts/semantic-release.cjs --tag-format '${version}'",
"publish-test": "node .github/scripts/semantic-release.cjs --tag-format '${version}' --dry-run --debug",
"semantic-release": "semantic-release"
},
"devDependencies": {
"@commitlint/cli": "^19.4.1",
"@commitlint/config-conventional": "^19.4.1",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/github": "^12.0.8",
"@semantic-release/release-notes-generator": "^14.1.1",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"semantic-release": "^25.0.5"
}
}