-
Notifications
You must be signed in to change notification settings - Fork 65
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æ <skjnldsv@protonmail.com>
- Loading branch information
Showing
1 changed file
with
126 additions
and
126 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,127 +1,127 @@ | ||
{ | ||
"name": "activity", | ||
"description": "This application enables people to view a log of activities about them or about files.", | ||
"version": "2.20.0", | ||
"author": "Julius Härtl <jus@bitgrid.net", | ||
"contributors": [], | ||
"bugs": { | ||
"url": "https://github.com/nextcloud/activity/issues" | ||
}, | ||
"repository": { | ||
"url": "https://github.com/nextcloud/activity", | ||
"type": "git" | ||
}, | ||
"homepage": "https://github.com/nextcloud/activity", | ||
"license": "agpl", | ||
"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", | ||
"serve": "NODE_ENV=development webpack serve --progress --config webpack.js", | ||
"lint": "eslint --ext .js,.vue src", | ||
"lint:fix": "eslint --ext .js,.vue src --fix", | ||
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue", | ||
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix", | ||
"test": "TZ=CET NODE_ENV=test jest --passWithNoTests src/", | ||
"test:coverage": "TZ=CET NODE_ENV=test jest --coverage src/", | ||
"test:update-snapshots": "TZ=CET NODE_ENV=test jest --updateSnapshot", | ||
"cypress": "npm run cypress:component && npm run cypress:e2e", | ||
"cypress:component": "cypress run --component", | ||
"cypress:e2e": "cypress run --e2e", | ||
"cypress:gui": "cypress open", | ||
"precypress:update-snapshots": "TESTING=true npm run dev" | ||
}, | ||
"engines": { | ||
"node": "^16.0.0", | ||
"npm": "^7.0.0 || ^8.0.0" | ||
}, | ||
"browserslist": [ | ||
"extends @nextcloud/browserslist-config" | ||
], | ||
"jest": { | ||
"verbose": true, | ||
"moduleFileExtensions": [ | ||
"js", | ||
"json", | ||
"vue" | ||
], | ||
"testEnvironment": "jest-environment-jsdom", | ||
"transform": { | ||
"^.+\\.js$": "babel-jest", | ||
"^.+\\.vue$": "@vue/vue2-jest" | ||
}, | ||
"transformIgnorePatterns": [ | ||
"\\.pnp\\.[^\\/]+$", | ||
"/node_modules/(?!(@nextcloud/vue-richtext)|(vue-material-design-icons)/)" | ||
], | ||
"snapshotSerializers": [ | ||
"<rootDir>/node_modules/jest-serializer-vue" | ||
], | ||
"setupFilesAfterEnv": [ | ||
"./src/tests/setup.js" | ||
], | ||
"coverageDirectory": "./coverage/", | ||
"collectCoverage": false, | ||
"collectCoverageFrom": [ | ||
"<rootDir>/src/**/*.{js,vue}", | ||
"!**/node_modules/**" | ||
], | ||
"coverageReporters": [ | ||
"json", | ||
"text", | ||
"html", | ||
"lcov", | ||
"clover" | ||
] | ||
}, | ||
"dependencies": { | ||
"@mdi/svg": "^7.2.96", | ||
"@nextcloud/auth": "^2.1.0", | ||
"@nextcloud/axios": "^2.3.0", | ||
"@nextcloud/dialogs": "^3.1.4", | ||
"@nextcloud/initial-state": "^2.0.0", | ||
"@nextcloud/l10n": "^1.6.0", | ||
"@nextcloud/logger": "^2.5.0", | ||
"@nextcloud/moment": "^1.2.1", | ||
"@nextcloud/paths": "^2.1.0", | ||
"@nextcloud/router": "^2.0.0", | ||
"@nextcloud/vue": "^7.12.0", | ||
"@nextcloud/vue-dashboard": "^2.0.1", | ||
"@nextcloud/vue-richtext": "^2.0.4", | ||
"vue": "^2.7.14", | ||
"vue-material-design-icons": "^5.2.0", | ||
"vuex": "^3.6.2" | ||
}, | ||
"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.3.0", | ||
"@testing-library/vue": "^5.9.0", | ||
"@types/jest": "^29.5.2", | ||
"@types/dockerode": "^3.3.18", | ||
"@vue/test-utils": "^1.3.6", | ||
"@vue/tsconfig": "^0.1.3", | ||
"@vue/vue2-jest": "^29.2.4", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"babel-loader-exclude-node-modules-except": "^1.2.1", | ||
"cypress": "^12.9.0", | ||
"cypress-visual-regression": "^3.0.0", | ||
"cypress-wait-until": "^2.0.0", | ||
"dockerode": "^3.3.4", | ||
"eslint-plugin-cypress": "^2.12.1", | ||
"jest": "^29.5.0", | ||
"jest-environment-jsdom": "^29.5.0", | ||
"jest-serializer-vue": "^3.1.0", | ||
"ts-node": "^10.9.1", | ||
"tslib": "^2.5.0", | ||
"typescript": "^4.9.5", | ||
"regenerator-runtime": "^0.13.11", | ||
"wait-on": "^7.0.1", | ||
"vue-template-compiler": "^2.7.14" | ||
} | ||
} | ||
"name": "activity", | ||
"description": "This application enables people to view a log of activities about them or about files.", | ||
"version": "2.20.0", | ||
"author": "Julius Härtl <jus@bitgrid.net", | ||
"contributors": [], | ||
"bugs": { | ||
"url": "https://github.com/nextcloud/activity/issues" | ||
}, | ||
"repository": { | ||
"url": "https://github.com/nextcloud/activity", | ||
"type": "git" | ||
}, | ||
"homepage": "https://github.com/nextcloud/activity", | ||
"license": "agpl", | ||
"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", | ||
"serve": "NODE_ENV=development webpack serve --progress --config webpack.js", | ||
"lint": "eslint --ext .js,.vue src", | ||
"lint:fix": "eslint --ext .js,.vue src --fix", | ||
"stylelint": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue", | ||
"stylelint:fix": "stylelint css/*.css css/*.scss src/**/*.scss src/**/*.vue --fix", | ||
"test": "TZ=CET NODE_ENV=test jest --passWithNoTests src/", | ||
"test:coverage": "TZ=CET NODE_ENV=test jest --coverage src/", | ||
"test:update-snapshots": "TZ=CET NODE_ENV=test jest --updateSnapshot", | ||
"cypress": "npm run cypress:component && npm run cypress:e2e", | ||
"cypress:component": "cypress run --component", | ||
"cypress:e2e": "cypress run --e2e", | ||
"cypress:gui": "cypress open", | ||
"precypress:update-snapshots": "TESTING=true npm run dev" | ||
}, | ||
"engines": { | ||
"node": "^20.0.0", | ||
"npm": "^9.0.0" | ||
}, | ||
"browserslist": [ | ||
"extends @nextcloud/browserslist-config" | ||
], | ||
"jest": { | ||
"verbose": true, | ||
"moduleFileExtensions": [ | ||
"js", | ||
"json", | ||
"vue" | ||
], | ||
"testEnvironment": "jest-environment-jsdom", | ||
"transform": { | ||
"^.+\\.js$": "babel-jest", | ||
"^.+\\.vue$": "@vue/vue2-jest" | ||
}, | ||
"transformIgnorePatterns": [ | ||
"\\.pnp\\.[^\\/]+$", | ||
"/node_modules/(?!(@nextcloud/vue-richtext)|(vue-material-design-icons)/)" | ||
], | ||
"snapshotSerializers": [ | ||
"<rootDir>/node_modules/jest-serializer-vue" | ||
], | ||
"setupFilesAfterEnv": [ | ||
"./src/tests/setup.js" | ||
], | ||
"coverageDirectory": "./coverage/", | ||
"collectCoverage": false, | ||
"collectCoverageFrom": [ | ||
"<rootDir>/src/**/*.{js,vue}", | ||
"!**/node_modules/**" | ||
], | ||
"coverageReporters": [ | ||
"json", | ||
"text", | ||
"html", | ||
"lcov", | ||
"clover" | ||
] | ||
}, | ||
"dependencies": { | ||
"@mdi/svg": "^7.2.96", | ||
"@nextcloud/auth": "^2.1.0", | ||
"@nextcloud/axios": "^2.3.0", | ||
"@nextcloud/dialogs": "^3.1.4", | ||
"@nextcloud/initial-state": "^2.0.0", | ||
"@nextcloud/l10n": "^1.6.0", | ||
"@nextcloud/logger": "^2.5.0", | ||
"@nextcloud/moment": "^1.2.1", | ||
"@nextcloud/paths": "^2.1.0", | ||
"@nextcloud/router": "^2.0.0", | ||
"@nextcloud/vue": "^7.12.0", | ||
"@nextcloud/vue-dashboard": "^2.0.1", | ||
"@nextcloud/vue-richtext": "^2.0.4", | ||
"vue": "^2.7.14", | ||
"vue-material-design-icons": "^5.2.0", | ||
"vuex": "^3.6.2" | ||
}, | ||
"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.3.0", | ||
"@testing-library/vue": "^5.9.0", | ||
"@types/jest": "^29.5.2", | ||
"@types/dockerode": "^3.3.18", | ||
"@vue/test-utils": "^1.3.6", | ||
"@vue/tsconfig": "^0.1.3", | ||
"@vue/vue2-jest": "^29.2.4", | ||
"babel-core": "^7.0.0-bridge.0", | ||
"babel-loader-exclude-node-modules-except": "^1.2.1", | ||
"cypress": "^12.9.0", | ||
"cypress-visual-regression": "^3.0.0", | ||
"cypress-wait-until": "^2.0.0", | ||
"dockerode": "^3.3.4", | ||
"eslint-plugin-cypress": "^2.12.1", | ||
"jest": "^29.5.0", | ||
"jest-environment-jsdom": "^29.5.0", | ||
"jest-serializer-vue": "^3.1.0", | ||
"ts-node": "^10.9.1", | ||
"tslib": "^2.5.0", | ||
"typescript": "^4.9.5", | ||
"regenerator-runtime": "^0.13.11", | ||
"wait-on": "^7.0.1", | ||
"vue-template-compiler": "^2.7.14" | ||
} | ||
} |