Merge pull request #773 from dannyrb/master-fresh

chore: clean up configs
This commit is contained in:
Danny Brown 2019-08-14 15:03:41 -04:00 committed by GitHub
commit df6410b9d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 58 additions and 49 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/extension-cornerstone",
"version": "0.50.0-alpha.10",
"version": "0.50.0",
"description": "OHIF extension for Cornerstone",
"author": "OHIF",
"license": "MIT",
@ -8,8 +8,9 @@
"main": "dist/index.umd.js",
"module": "src/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"files": [
"dist",
@ -27,8 +28,8 @@
"start": "yarn run dev"
},
"peerDependencies": {
"@ohif/core": "^0.50.0-alpha.0",
"@ohif/ui": "^0.50.0-alpha.0",
"@ohif/core": "^0.50.0",
"@ohif/ui": "^0.50.0",
"cornerstone-core": "^2.2.8",
"cornerstone-math": "^0.1.8",
"cornerstone-tools": "^3.1.0",

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/extension-dicom-html",
"version": "0.50.0-alpha.10",
"version": "0.50.0",
"description": "OHIF extension for rendering structured reports to HTML",
"author": "OHIF",
"license": "MIT",
@ -8,8 +8,9 @@
"main": "dist/index.umd.js",
"module": "src/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"files": [
"dist",
@ -27,7 +28,7 @@
"start": "yarn run dev"
},
"peerDependencies": {
"@ohif/core": "^0.50.0-alpha.0",
"@ohif/core": "^0.50.0",
"dcmjs": "^0.3.3",
"prop-types": "^15.6.2",
"react": "^15.0.0 || ^16.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/extension-dicom-microscopy",
"version": "0.50.0-alpha.10",
"version": "0.50.0",
"description": "OHIF extension for Dicom Microscopy",
"author": "OHIF",
"license": "MIT",
@ -15,8 +15,9 @@
"README.md"
],
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"scripts": {
"dev": "webpack --config .webpack/webpack.dev.js --watch --debug --output-pathinfo",
@ -27,7 +28,7 @@
"start": "yarn run dev"
},
"peerDependencies": {
"@ohif/core": "^0.50.0-alpha.0",
"@ohif/core": "^0.50.0",
"react": "^15.0.0 || ^16.0.0",
"react-dom": "^15.0.0 || ^16.0.0"
},

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/extension-dicom-pdf",
"version": "0.50.0-alpha.10",
"version": "0.50.0",
"description": "OHIF extension for Dicom PDF",
"author": "OHIF",
"license": "MIT",
@ -11,8 +11,9 @@
"access": "public"
},
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"files": [
"dist",
@ -27,7 +28,7 @@
"start": "yarn run dev"
},
"peerDependencies": {
"@ohif/core": "^0.50.0-alpha.0",
"@ohif/core": "^0.50.0",
"dicom-parser": "^1.8.3",
"prop-types": "^15.6.2",
"react": "^15.0.0 || ^16.0.0",

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/extension-vtk",
"version": "0.50.0-alpha.10",
"version": "0.50.0",
"description": "OHIF extension for VTK.js",
"author": "OHIF",
"license": "MIT",
@ -16,8 +16,9 @@
"README.md"
],
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"scripts": {
"dev": "webpack --config .webpack/webpack.dev.js --watch --debug --output-pathinfo",
@ -28,9 +29,9 @@
"start": "yarn run dev"
},
"peerDependencies": {
"@ohif/core": "^0.50.0-alpha.0",
"@ohif/i18n": "^0.50.0-alpha.0",
"@ohif/ui": "^0.50.0-alpha.0",
"@ohif/core": "^0.50.0",
"@ohif/i18n": "^0.50.0",
"@ohif/ui": "^0.50.0",
"cornerstone-core": "^2.2.8",
"cornerstone-wado-image-loader": "^3.0.0",
"dcmjs": "^0.4.7",
@ -51,8 +52,8 @@
"vtk.js": "^8.11.0"
},
"devDependencies": {
"@ohif/core": "^0.50.0-alpha.10",
"@ohif/ui": "^0.50.0-alpha.10",
"@ohif/core": "^0.50.0",
"@ohif/ui": "^0.50.0",
"cornerstone-tools": "^3.13.0",
"cornerstone-wado-image-loader": "^3.0.0",
"dcmjs": "^0.4.7",

View File

@ -6,9 +6,9 @@
"extensions/*"
],
"engines": {
"node": "^10.0.0",
"npm": "^6.0.0",
"yarn": "^1.16.0"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"scripts": {
"cm": "npx git-cz",

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/core",
"version": "0.50.0-alpha.10",
"version": "0.50.0",
"description": "Generic business logic for web-based medical imaging applications",
"author": "OHIF Core Team",
"license": "MIT",
@ -16,8 +16,9 @@
"README.md"
],
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"scripts": {
"dev": "jest --watchAll",

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/i18n",
"version": "0.50.0-alpha.11",
"version": "0.50.0",
"description": "Internationalization library for The OHIF Viewer",
"author": "OHIF",
"license": "MIT",
@ -8,8 +8,9 @@
"main": "dist/index.umd.js",
"module": "src/index.js",
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"files": [
"dist",

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/ui",
"version": "0.50.0-alpha.10",
"version": "0.50.0",
"description": "A set of React components for Medical Imaging Viewers",
"author": "OHIF Contributors",
"license": "MIT",
@ -11,8 +11,9 @@
"access": "public"
},
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"files": [
"dist",

View File

@ -1,6 +1,6 @@
{
"name": "@ohif/viewer",
"version": "0.50.0-alpha.13",
"version": "0.50.0",
"description": "OHIF Viewer",
"author": "OHIF Contributors",
"license": "MIT",
@ -11,8 +11,9 @@
"access": "public"
},
"engines": {
"node": ">=8",
"npm": ">=5"
"node": ">=10",
"npm": ">=6",
"yarn": ">=1.16.0"
},
"proxy": "http://localhost:8042",
"scripts": {
@ -43,14 +44,14 @@
},
"dependencies": {
"@babel/runtime": "^7.5.5",
"@ohif/core": "^0.50.0-alpha.10",
"@ohif/extension-cornerstone": "^0.50.0-alpha.10",
"@ohif/extension-dicom-html": "^0.50.0-alpha.10",
"@ohif/extension-dicom-microscopy": "^0.50.0-alpha.10",
"@ohif/extension-dicom-pdf": "^0.50.0-alpha.10",
"@ohif/extension-vtk": "^0.50.0-alpha.10",
"@ohif/i18n": "^0.50.0-alpha.11",
"@ohif/ui": "^0.50.0-alpha.10",
"@ohif/core": "^0.50.0",
"@ohif/extension-cornerstone": "^0.50.0",
"@ohif/extension-dicom-html": "^0.50.0",
"@ohif/extension-dicom-microscopy": "^0.50.0",
"@ohif/extension-dicom-pdf": "^0.50.0",
"@ohif/extension-vtk": "^0.50.0",
"@ohif/i18n": "^0.50.0",
"@ohif/ui": "^0.50.0",
"@tanem/react-nprogress": "^1.1.25",
"classnames": "^2.2.6",
"core-js": "^3.1.4",

View File

@ -1 +1 @@
export default '0.0.50-alpha.0';
export default '0.0.50';