chore: update node engines to next LTS (node 20 / npm 9)

Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
This commit is contained in:
John Molakvoæ 2023-06-21 10:32:13 +02:00
parent 0d1abfa234
commit 1d52cfb366
No known key found for this signature in database
GPG key ID: 60C25B8C072916CF

View file

@ -1,57 +1,57 @@
{ {
"name": "integration_moodle", "name": "integration_moodle",
"version": "0.0.1", "version": "0.0.1",
"description": "Moodle integration", "description": "Moodle integration",
"main": "index.js", "main": "index.js",
"directories": { "directories": {
"test": "tests" "test": "tests"
}, },
"scripts": { "scripts": {
"build": "NODE_ENV=production webpack --progress --config webpack.js", "build": "NODE_ENV=production webpack --progress --config webpack.js",
"dev": "NODE_ENV=development webpack --progress --config webpack.js", "dev": "NODE_ENV=development webpack --progress --config webpack.js",
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js", "watch": "NODE_ENV=development webpack --progress --watch --config webpack.js",
"lint": "eslint --ext .js,.vue src", "lint": "eslint --ext .js,.vue src",
"lint:fix": "eslint --ext .js,.vue src --fix", "lint:fix": "eslint --ext .js,.vue src --fix",
"stylelint": "stylelint src", "stylelint": "stylelint src",
"stylelint:fix": "stylelint src --fix" "stylelint:fix": "stylelint src --fix"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "https://github.com/nextcloud/integration_moodle" "url": "https://github.com/nextcloud/integration_moodle"
}, },
"keywords": [ "keywords": [
"moodle" "moodle"
], ],
"author": "Julien Veyssier", "author": "Julien Veyssier",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"bugs": { "bugs": {
"url": "https://github.com/nextcloud/integration_moodle/issues" "url": "https://github.com/nextcloud/integration_moodle/issues"
}, },
"homepage": "https://github.com/nextcloud/integration_moodle", "homepage": "https://github.com/nextcloud/integration_moodle",
"browserslist": [ "browserslist": [
"extends @nextcloud/browserslist-config" "extends @nextcloud/browserslist-config"
], ],
"engines": { "engines": {
"node": ">=14.0.0", "node": "^20.0.0",
"npm": ">=7.0.0" "npm": "^9.0.0"
}, },
"dependencies": { "dependencies": {
"@nextcloud/auth": "^1.3.0", "@nextcloud/auth": "^1.3.0",
"@nextcloud/axios": "^1.6.0", "@nextcloud/axios": "^1.6.0",
"@nextcloud/dialogs": "^3.1.2", "@nextcloud/dialogs": "^3.1.2",
"@nextcloud/initial-state": "^1.2.0", "@nextcloud/initial-state": "^1.2.0",
"@nextcloud/l10n": "^1.4.1", "@nextcloud/l10n": "^1.4.1",
"@nextcloud/moment": "^1.1.1", "@nextcloud/moment": "^1.1.1",
"@nextcloud/router": "^2.0.0", "@nextcloud/router": "^2.0.0",
"@nextcloud/vue": "^4.2.0", "@nextcloud/vue": "^4.2.0",
"@nextcloud/vue-dashboard": "^2.0.1", "@nextcloud/vue-dashboard": "^2.0.1",
"vue": "^2.6.14" "vue": "^2.6.14"
}, },
"devDependencies": { "devDependencies": {
"@nextcloud/babel-config": "^1.0.0", "@nextcloud/babel-config": "^1.0.0",
"@nextcloud/browserslist-config": "^2.2.0", "@nextcloud/browserslist-config": "^2.2.0",
"@nextcloud/eslint-config": "^6.1.0", "@nextcloud/eslint-config": "^6.1.0",
"@nextcloud/stylelint-config": "^1.0.0-beta.0", "@nextcloud/stylelint-config": "^1.0.0-beta.0",
"@nextcloud/webpack-vue-config": "^4.1.0" "@nextcloud/webpack-vue-config": "^4.1.0"
} }
} }