89 lines
2.3 KiB
JSON
89 lines
2.3 KiB
JSON
{
|
|
"name": "@ohif/extension-dicom-microscopy",
|
|
"version": "0.0.9",
|
|
"description": "OHIF extension for Dicom Microscopy",
|
|
"author": "OHIF",
|
|
"license": "MIT",
|
|
"repository": "OHIF/Viewers",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.es.js",
|
|
"jsnext:main": "dist/index.es.js",
|
|
"engines": {
|
|
"node": ">=8",
|
|
"npm": ">=5"
|
|
},
|
|
"scripts": {
|
|
"build": "rollup -c",
|
|
"prepublishOnly": "npm run build",
|
|
"start": "rollup -c -w",
|
|
"lint": "eslint -c .eslintrc --fix src && prettier --single-quote --write src/**/*.{js,jsx,json,css}"
|
|
},
|
|
"peerDependencies": {
|
|
"ohif-core": "^0.6.0",
|
|
"react": "^15.0.0 || ^16.0.0",
|
|
"react-dom": "^15.0.0 || ^16.0.0",
|
|
"react-resize-detector": "^4.2.0"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.2.2",
|
|
"@babel/plugin-external-helpers": "^7.2.0",
|
|
"@babel/plugin-proposal-class-properties": "^7.2.3",
|
|
"@babel/plugin-transform-runtime": "^7.2.0",
|
|
"@babel/preset-env": "^7.2.3",
|
|
"@babel/preset-react": "^7.0.0",
|
|
"babel-eslint": "^9.0.0",
|
|
"cross-env": "^5.2.0",
|
|
"eslint": "5.6.0",
|
|
"eslint-plugin-import": "^2.14.0",
|
|
"eslint-plugin-node": "^8.0.0",
|
|
"eslint-plugin-promise": "^4.0.1",
|
|
"eslint-plugin-react": "^7.11.1",
|
|
"gh-pages": "^2.0.1",
|
|
"husky": "^1.3.1",
|
|
"lint-staged": "^8.1.0",
|
|
"prettier": "^1.15.3",
|
|
"react": "^16.6.3",
|
|
"react-dom": "^16.6.3",
|
|
"rollup": "^0.68.2",
|
|
"rollup-plugin-babel": "^4.2.0",
|
|
"rollup-plugin-commonjs": "^9.2.0",
|
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
"rollup-plugin-node-resolve": "^4.0.0",
|
|
"rollup-plugin-peer-deps-external": "^2.2.0",
|
|
"rollup-plugin-postcss": "^1.6.3",
|
|
"rollup-plugin-url": "^2.1.0",
|
|
"stylelint": "^9.9.0",
|
|
"stylelint-config-recommended": "^2.1.0",
|
|
"stylus": "^0.54.5"
|
|
},
|
|
"husky": {
|
|
"hooks": {
|
|
"pre-commit": "lint-staged"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.{js,jsx,json,css}": [
|
|
"prettier --single-quote --write",
|
|
"git add"
|
|
]
|
|
},
|
|
"browserslist": [
|
|
">0.2%",
|
|
"not dead",
|
|
"not ie <= 11",
|
|
"not op_mini all"
|
|
],
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"dependencies": {
|
|
"@babel/runtime": "^7.2.0",
|
|
"classnames": "^2.2.6",
|
|
"dicom-microscopy-viewer": "0.5.0",
|
|
"lodash.debounce": "^4.0.8"
|
|
}
|
|
}
|