From f827b4e509340e2dcd2625953265929002ca11e9 Mon Sep 17 00:00:00 2001 From: Eric Bremner <ebremner@uwaterloo.ca> Date: Wed, 8 Nov 2023 17:48:45 -0500 Subject: [PATCH] ISTWCMS-6636: adding php 8 fix for packages --- php8fix-package.json | 74 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 74 insertions(+) create mode 100644 php8fix-package.json diff --git a/php8fix-package.json b/php8fix-package.json new file mode 100644 index 00000000..5d68b5c0 --- /dev/null +++ b/php8fix-package.json @@ -0,0 +1,74 @@ +{ + "name": "surface", + "version": "1.0.0", + "description": "A Pattern Lab based Drupal starter theme.", + "bugs": "https://github.com/chazchumley/surface/issues", + "repository": { + "type": "git", + "url": "https://github.com/chazchumley/surface.git" + }, + "license": "GPL-2.0+", + "private": true, + "themePath": ".", + "main": "gulpfile.js", + "engines": { + "node": ">=14" + }, + "browserslist": [ + "last 2 versions and not dead", + ">= 1%", + ">= 1% in US" + ], + "scripts": { + "build": "gulp", + "compile": "gulp compile", + "watch": "gulp watch", + "styleguide": "gulp styleguide", + "compress": "gulp compress", + "lint": "gulp lint", + "clean": "gulp clean", + "gulp": "gulp", + "generate": "yo ohana:component" + }, + "babel": { + "sourceType": "unambiguous", + "presets": [ + [ + "@babel/preset-env" + ] + ] + }, + "devDependencies": { + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@pattern-lab/core": "^5.17.0", + "@pattern-lab/engine-twig-php": "5.17.0", + "@pattern-lab/plugin-tab": "^5.16.1", + "@pattern-lab/uikit-workshop": "5.17.0", + "browser-sync": "2.29.3", + "del": "^6.0.0", + "generator-ohana": "^1.0.2", + "gulp": "^4.0.2", + "gulp-autoprefixer": "^8.0.0", + "gulp-babel": "^8.0.0", + "gulp-changed": "^4.0.3", + "gulp-clean-css": "^4.3.0", + "gulp-concat": "^2.6.1", + "gulp-eslint": "^6.0.0", + "gulp-libsquoosh": "^1.1.2", + "gulp-minify": "^3.1.0", + "gulp-order": "^1.2.0", + "gulp-rename": "^2.0.0", + "gulp-sass": "^5.1.0", + "gulp-sourcemaps": "^3.0.0", + "gulp-stylelint": "^13.0.0", + "sass": "^1.50.0", + "stylelint": "^13.13.1", + "stylelint-scss": "^3.21.0", + "yo": "^4.3.1" + }, + "resolutions": { + "@basalt/twig-renderer": "2.1.1" + }, + "dependencies": {} +} -- GitLab