-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: update node engines to next LTS (node 20 / npm 9)
Signed-off-by: John Molakvoæ <[email protected]>
- Loading branch information
Showing
1 changed file
with
82 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,84 +1,84 @@ | ||
{ | ||
"name": "richdocuments", | ||
"description": "Collabora online integration", | ||
"version": "8.2.0-dev", | ||
"authors": [ | ||
{ | ||
"name": "Julius Härtl", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"license": "AGPL-3.0-or-later", | ||
"private": true, | ||
"scripts": { | ||
"build": "NODE_ENV=production webpack --progress --config webpack.js", | ||
"dev": "NODE_ENV=development webpack --progress --config webpack.js", | ||
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js", | ||
"lint": "eslint --ext .js,.vue src", | ||
"lint:fix": "eslint --ext .js,.vue src --fix", | ||
"lint:cypress": "eslint --ext .js cypress", | ||
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css css/*.scss", | ||
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css css/*.scss --fix", | ||
"test": "NODE_ENV=test jest --passWithNoTests", | ||
"test:coverage": "NODE_ENV=test jest --coverage" | ||
}, | ||
"dependencies": { | ||
"@nextcloud/auth": "^2.1.0", | ||
"@nextcloud/axios": "^2.3.0", | ||
"@nextcloud/capabilities": "^1.0.4", | ||
"@nextcloud/dialogs": "^4.0.1", | ||
"@nextcloud/event-bus": "^3.1.0", | ||
"@nextcloud/initial-state": "^2.0.0", | ||
"@nextcloud/l10n": "^2.1.0", | ||
"@nextcloud/moment": "^1.2.1", | ||
"@nextcloud/router": "^2.1.2", | ||
"@nextcloud/vue": "^7.12.0", | ||
"vue": "^2.7.14", | ||
"vue-material-design-icons": "^5.2.0" | ||
}, | ||
"browserslist": [ | ||
"extends @nextcloud/browserslist-config" | ||
], | ||
"engines": { | ||
"node": "^16.0.0", | ||
"npm": "^7.0.0 || ^8.0.0" | ||
}, | ||
"devDependencies": { | ||
"@cypress/browserify-preprocessor": "^3.0.2", | ||
"@nextcloud/babel-config": "^1.0.0", | ||
"@nextcloud/browserslist-config": "^2.3.0", | ||
"@nextcloud/cypress": "^1.0.0-beta.2", | ||
"@nextcloud/eslint-config": "^8.2.1", | ||
"@nextcloud/stylelint-config": "^2.3.0", | ||
"@nextcloud/webpack-vue-config": "^5.5.1", | ||
"babel-loader-exclude-node-modules-except": "^1.2.1", | ||
"cypress": "^12.14.0", | ||
"eslint-plugin-cypress": "^2.13.3", | ||
"ts-loader": "^9.4.3", | ||
"typescript": "^4.9.5" | ||
}, | ||
"jest": { | ||
"verbose": true, | ||
"testEnvironment": "jest-environment-jsdom-fourteen", | ||
"moduleFileExtensions": [ | ||
"js", | ||
"vue" | ||
], | ||
"moduleNameMapper": { | ||
"^@/(.*)$": "<rootDir>/src/$1" | ||
}, | ||
"testPathIgnorePatterns": [ | ||
"<rootDir>/src/tests/fixtures/", | ||
"<rootDir>/build" | ||
], | ||
"transform": { | ||
"^.+\\.js$": "<rootDir>/node_modules/babel-jest", | ||
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest" | ||
}, | ||
"snapshotSerializers": [ | ||
"<rootDir>/node_modules/jest-serializer-vue" | ||
], | ||
"globalSetup": "<rootDir>/src/tests/setup.js" | ||
} | ||
"name": "richdocuments", | ||
"description": "Collabora online integration", | ||
"version": "8.2.0-dev", | ||
"authors": [ | ||
{ | ||
"name": "Julius Härtl", | ||
"email": "[email protected]", | ||
"role": "Developer" | ||
} | ||
], | ||
"license": "AGPL-3.0-or-later", | ||
"private": true, | ||
"scripts": { | ||
"build": "NODE_ENV=production webpack --progress --config webpack.js", | ||
"dev": "NODE_ENV=development webpack --progress --config webpack.js", | ||
"watch": "NODE_ENV=development webpack --progress --watch --config webpack.js", | ||
"lint": "eslint --ext .js,.vue src", | ||
"lint:fix": "eslint --ext .js,.vue src --fix", | ||
"lint:cypress": "eslint --ext .js cypress", | ||
"stylelint": "stylelint src/**/*.vue src/**/*.scss src/**/*.css css/*.scss", | ||
"stylelint:fix": "stylelint src/**/*.vue src/**/*.scss src/**/*.css css/*.scss --fix", | ||
"test": "NODE_ENV=test jest --passWithNoTests", | ||
"test:coverage": "NODE_ENV=test jest --coverage" | ||
}, | ||
"dependencies": { | ||
"@nextcloud/auth": "^2.1.0", | ||
"@nextcloud/axios": "^2.3.0", | ||
"@nextcloud/capabilities": "^1.0.4", | ||
"@nextcloud/dialogs": "^4.0.1", | ||
"@nextcloud/event-bus": "^3.1.0", | ||
"@nextcloud/initial-state": "^2.0.0", | ||
"@nextcloud/l10n": "^2.1.0", | ||
"@nextcloud/moment": "^1.2.1", | ||
"@nextcloud/router": "^2.1.2", | ||
"@nextcloud/vue": "^7.12.0", | ||
"vue": "^2.7.14", | ||
"vue-material-design-icons": "^5.2.0" | ||
}, | ||
"browserslist": [ | ||
"extends @nextcloud/browserslist-config" | ||
], | ||
"engines": { | ||
"node": "^20.0.0", | ||
"npm": "^9.0.0" | ||
}, | ||
"devDependencies": { | ||
"@cypress/browserify-preprocessor": "^3.0.2", | ||
"@nextcloud/babel-config": "^1.0.0", | ||
"@nextcloud/browserslist-config": "^2.3.0", | ||
"@nextcloud/cypress": "^1.0.0-beta.2", | ||
"@nextcloud/eslint-config": "^8.2.1", | ||
"@nextcloud/stylelint-config": "^2.3.0", | ||
"@nextcloud/webpack-vue-config": "^5.5.1", | ||
"babel-loader-exclude-node-modules-except": "^1.2.1", | ||
"cypress": "^12.14.0", | ||
"eslint-plugin-cypress": "^2.13.3", | ||
"ts-loader": "^9.4.3", | ||
"typescript": "^4.9.5" | ||
}, | ||
"jest": { | ||
"verbose": true, | ||
"testEnvironment": "jest-environment-jsdom-fourteen", | ||
"moduleFileExtensions": [ | ||
"js", | ||
"vue" | ||
], | ||
"moduleNameMapper": { | ||
"^@/(.*)$": "<rootDir>/src/$1" | ||
}, | ||
"testPathIgnorePatterns": [ | ||
"<rootDir>/src/tests/fixtures/", | ||
"<rootDir>/build" | ||
], | ||
"transform": { | ||
"^.+\\.js$": "<rootDir>/node_modules/babel-jest", | ||
".*\\.(vue)$": "<rootDir>/node_modules/vue-jest" | ||
}, | ||
"snapshotSerializers": [ | ||
"<rootDir>/node_modules/jest-serializer-vue" | ||
], | ||
"globalSetup": "<rootDir>/src/tests/setup.js" | ||
} | ||
} |