Revision fe303085b0c8f132dfa07ce7ab5b38941a1a8d86 authored by Matthias Bernt on 26 August 2022, 10:55:08 UTC, committed by Matthias Bernt on 26 August 2022, 13:53:40 UTC
bed and interval datatypes `check element_is_set` before overwriting
metadata. since the having `default=None` and `no_value=0` makes
`element_is_set` return True (since `None!=0`). Therefore metadata
values are never set
1 parent 4e23fbb
Raw File
package.json
{
  "name": "galaxy-client",
  "version": "0.1.0",
  "description": "Galaxy client application build system",
  "keywords": [
    "galaxy"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/galaxyproject/galaxy.git"
  },
  "license": "AFL-3.0",
  "resolutions": {
    "**/chokidar": "3.4.0"
  },
  "dependencies": {
    "@babel/polyfill": "^7.10.1",
    "@fortawesome/fontawesome-free": "^5.13.0",
    "@fortawesome/fontawesome-svg-core": "^1.2.28",
    "@fortawesome/free-brands-svg-icons": "^5.15.1",
    "@fortawesome/free-regular-svg-icons": "^5.14.0",
    "@fortawesome/free-solid-svg-icons": "^5.13.0",
    "@fortawesome/vue-fontawesome": "^0.1.9",
    "@handsontable/vue": "^2.0.0-beta1",
    "@hirez_io/observer-spy": "^2.0.0",
    "@johmun/vue-tags-input": "^2.1.0",
    "@sentry/browser": "^5.20.1",
    "axios": "^0.21.1",
    "backbone": "1.4.0",
    "bootstrap": "4.5.0",
    "bootstrap-tour": "https://github.com/sorich87/bootstrap-tour.git#65a49742e131d19f41e3f5bf63588995f7b8a9e0",
    "bootstrap-vue": "^2.15.0",
    "citation-js": "^0.5.0-alpha.5",
    "d3": "3",
    "decode-uri-component": "^0.2.0",
    "deep-diff": "^1.0.2",
    "deep-equal": "^2.0.5",
    "elkjs": "^0.6.2",
    "flush-promises": "^1.0.2",
    "glob": "^7.1.6",
    "handsontable": "^2.0.0",
    "imask": "^6.0.5",
    "in-viewport": "^3.6.0",
    "is-promise": "^4.0.0",
    "isotope-layout": "^3.0.6",
    "iter-tools": "7.0.0-rc.0",
    "jquery": "2",
    "jquery-migrate": "~1.4",
    "jquery-mousewheel": "^3.1.13",
    "jquery-ui": "^1.12.1",
    "jquery.complexify": "^0.5.2",
    "jquery.cookie": "^1.4.1",
    "linkifyjs": "^2.1.9",
    "markdown-it": "^11.0.0",
    "moment": "2.26.0",
    "popper.js": "^1.16.1",
    "pouchdb": "^7.2.2",
    "pouchdb-adapter-memory": "^7.2.2",
    "pouchdb-debug": "^7.2.1",
    "pouchdb-erase": "^1.0.2",
    "pouchdb-find": "^7.2.2",
    "pouchdb-upsert": "^2.2.0",
    "proper-skip-list": "^4.0.2",
    "pyre-to-regexp": "^0.0.5",
    "regression": "^2.0.1",
    "requirejs": "2.3.6",
    "rxjs": "^6.6.3",
    "rxjs-spy": "^7.5.3",
    "rxjs-spy-devtools-plugin": "^0.0.4",
    "slugify": "^1.4.0",
    "splitpanes": "2.3.6",
    "threads": "^1.6.3",
    "toastr": "^2.1.4",
    "underscore": "^1.10.2",
    "underscore.string": "^3.3.5",
    "vue": "^2.6.11",
    "vue-infinite-scroll": "^2.0.2",
    "vue-multiselect": "^2.1.0",
    "vue-router": "^3.3.1",
    "vue-rx": "^6.2.0",
    "vuedraggable": "2.24.1",
    "vueisotope": "^3.1.2",
    "vuex": "^3.4.0",
    "vuex-cache": "^3.2.0",
    "vuex-persist": "^3.1.3"
  },
  "scripts": {
    "watch": "gulp && yarn run save-build-hash && yarn run webpack-watch",
    "webpack-dev-server": "gulp && webpack-dev-server -d --host 0.0.0.0 --port 8081",
    "build": "NODE_ENV=development gulp && yarn run webpack && yarn run save-build-hash",
    "build-production": "NODE_ENV=production gulp && yarn run webpack-production && yarn run save-build-hash",
    "build-production-maps": "NODE_ENV=production gulp && yarn run webpack-production-maps && yarn run save-build-hash",
    "build-stats": "webpack --profile --json > webpack-stats.json",
    "webpack": "webpack -d",
    "webpack-watch": "webpack -d --watch",
    "webpack-production": "webpack -p",
    "webpack-production-maps": "GXY_BUILD_SOURCEMAPS=1 webpack -p",
    "gulp": "gulp",
    "save-build-hash": "(git rev-parse HEAD 2>/dev/null || echo '') >../static/client_build_hash.txt",
    "prettier": "prettier --write 'src/style/scss/**/*.scss' 'src/**/{*.js,*.vue}' '!src/libs/**'",
    "prettier-check": "prettier --check 'src/style/scss/**/*.scss' 'src/**/{*.js,*.vue}' '!src/libs/**'",
    "styleguide": "vue-styleguidist server",
    "styleguide:build": "vue-styleguidist build",
    "test": "yarn run qunit && yarn run jest",
    "jest": "jest --config tests/jest/jest.config.js",
    "jest-watch": "jest --config tests/jest/jest.config.js --watch",
    "qunit": "karma start tests/karma/karma.config.qunit.js",
    "eslint": "eslint -c .eslintrc.js src --ext .js,.vue"
  },
  "devDependencies": {
    "@babel/core": "^7.11.1",
    "@babel/helper-validator-identifier": "^7.10.4",
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "@babel/plugin-transform-runtime": "^7.11.0",
    "@babel/preset-env": "^7.11.0",
    "@testing-library/jest-dom": "^5.11.3",
    "@vue/test-utils": "^1.0.3",
    "amdi18n-loader": "^0.9.3",
    "autoprefixer": "^9.8.0",
    "axios-mock-adapter": "^1.18.2",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "^10.1.0",
    "babel-jest": "^26.3.0",
    "babel-loader": "^8.1.0",
    "babel-plugin-transform-inline-environment-variables": "^0.4.3",
    "babel-plugin-transform-vue-template": "^0.4.2",
    "chai": "^4.2.0",
    "chokidar": "^3.4.0",
    "css-loader": "^3.5.3",
    "del": "^5.1.0",
    "duplicate-package-checker-webpack-plugin": "^3.0.0",
    "eslint": "^7.7.0",
    "eslint-plugin-vue": "^6.2.2",
    "expose-loader": "^1.0.0",
    "file-loader": "^6.0.0",
    "gulp": "^4.0.2",
    "ignore-loader": "^0.1.2",
    "imports-loader": "^0.8.0",
    "jest": "^26.4.2",
    "jest-raw-loader": "^1.0.1",
    "json-loader": "^0.5.7",
    "karma": "^5.0.9",
    "karma-chai": "^0.1.0",
    "karma-chrome-launcher": "^3.1.0",
    "karma-phantomjs-launcher": "^1.0.4",
    "karma-polyfill": "^1.1.0",
    "karma-qunit": "^4.1.1",
    "karma-webpack": "^4.0.2",
    "mini-css-extract-plugin": "^0.9.0",
    "optimize-css-assets-webpack-plugin": "^5.0.3",
    "phantomjs-polyfill": "0.0.2",
    "phantomjs-prebuilt": "^2.1.7",
    "postcss-loader": "^3.0.0",
    "prettier": "^2.0.5",
    "qunit": "^2.10.0",
    "raw-loader": "^4.0.1",
    "sass": "^1.26.5",
    "sass-loader": "^8.0.2",
    "sinon": "^9.0.2",
    "store": "^2.0.12",
    "style-loader": "^1.2.1",
    "vue-jest": "^3.0.6",
    "vue-loader": "^15.9.2",
    "vue-styleguidist": "^4.23.3",
    "vue-template-compiler": "^2.6.11",
    "webpack": "^4.43.0",
    "webpack-cli": "^3.3.11",
    "webpack-dev-server": "^3.11.0",
    "webpack-merge": "^4.2.2",
    "worker-loader": "^3.0.6",
    "yaml-jest": "^1.0.5",
    "yaml-loader": "^0.6.0"
  }
}
back to top