Browse Source

chore: apply new sorting for package.json

Signed-off-by: Ferdinand Thiessen <opensource@fthiessen.de>
pull/55495/head
Ferdinand Thiessen 5 days ago
parent
commit
b12df40388
No known key found for this signature in database GPG Key ID: 45FAE7268762B400
  1. 50
      package.json

50
package.json

@ -1,9 +1,17 @@
{
"name": "nextcloud",
"version": "1.0.0",
"private": true,
"description": "Nextcloud Server",
"keywords": [
"nextcloud"
],
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/server.git"
},
"license": "AGPL-3.0-or-later",
"author": "Nextcloud GmbH and Nextcloud contributors",
"private": true,
"directories": {
"lib": "lib",
"test": "tests"
@ -11,34 +19,32 @@
"scripts": {
"build": "webpack --node-env production --progress",
"postbuild": "build/npm-post-build.sh",
"cypress": "npm run cypress:component && npm run cypress:e2e",
"cypress:component": "cypress run --component",
"cypress:e2e": "cypress run --e2e",
"cypress:gui": "cypress open",
"cypress:version": "cypress version",
"dev": "webpack --node-env development --progress",
"watch": "webpack --node-env development --progress --watch",
"lint": "eslint",
"lint:fix": "eslint --fix",
"sass": "sass --style compressed --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
"sass:icons": "babel-node core/src/icons.js",
"sass:watch": "sass --watch --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
"stylelint": "stylelint $(for appdir in $(ls apps); do if ! $(git check-ignore -q \"apps/$appdir\"); then printf \"'apps/$appdir/**/*.{scss,vue}' \"; fi; done) 'core/**/*.{scss,vue}'",
"stylelint:fix": "npm run stylelint -- --fix",
"test": "vitest run",
"test:watch": "vitest watch",
"test:coverage": "vitest run --coverage --reporter=default --reporter=junit --outputFile=test-report.junit.xml",
"test:update-snapshots": "vitest run --update",
"test:jsunit": "karma start tests/karma.config.js --single-run",
"sass": "sass --style compressed --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
"sass:watch": "sass --watch --load-path core/css core/css/ $(for cssdir in $(find apps -mindepth 2 -maxdepth 2 -name \"css\"); do if ! $(git check-ignore -q $cssdir); then printf \"$cssdir \"; fi; done)",
"sass:icons": "babel-node core/src/icons.js",
"cypress": "npm run cypress:component && npm run cypress:e2e",
"cypress:component": "cypress run --component",
"cypress:e2e": "cypress run --e2e",
"cypress:gui": "cypress open",
"cypress:version": "cypress version"
},
"repository": {
"type": "git",
"url": "https://github.com/nextcloud/server.git"
"test:update-snapshots": "vitest run --update",
"test:watch": "vitest watch",
"watch": "webpack --node-env development --progress --watch"
},
"keywords": [
"nextcloud"
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"license": "AGPL-3.0-or-later",
"overrides": {
"colors": "1.4.0"
},
"dependencies": {
"@chenfengyuan/vue-qrcode": "^1.0.2",
"@mdi/js": "^7.4.47",
@ -190,14 +196,8 @@
"webpack-merge": "^6.0.1",
"workbox-webpack-plugin": "^7.3.0"
},
"browserslist": [
"extends @nextcloud/browserslist-config"
],
"engines": {
"node": "^22.0.0",
"npm": "^10.5.0"
},
"overrides": {
"colors": "1.4.0"
}
}
Loading…
Cancel
Save