{
  "name": "dcmjs-ecg",
  "version": "0.0.15",
  "description": "DICOM electrocardiography (ECG) rendering for Node.js and browser using dcmjs",
  "main": "build/dcmjs-ecg.min.js",
  "module": "build/dcmjs-ecg.min.js",
  "types": "index.d.ts",
  "scripts": {
    "clean": "npm run clean:build && npm run clean:coverage && npm run clean:docs",
    "clean:build": "shx rm -rf build",
    "clean:coverage": "shx rm -rf coverage",
    "clean:docs": "shx rm -rf documentation",
    "coverage": "c8 --check-coverage --lines 80 --functions 80 --branches 80 --statements 80 --clean --reporter=text --reporter=html --include=src/*.js --exclude=src/index.js --exclude=src/version.js --exclude=src/log.js mocha test/**/*.test.js",
    "doc": "npm run doc:generate && open-cli documentation/index.html",
    "doc:generate": "npm run clean:docs && jsdoc -c .jsdocrc.json",
    "start:examples:node:js": "node examples/index.js",
    "start:examples:node:ts": "ts-node examples/index.ts",
    "start:examples:web": "webpack serve --port 8080 --open --no-client-overlay-warnings",
    "build": "npm run version && npm run lint && npm run test && npm run coverage && npm run webpack",
    "start": "npm run webpack",
    "version": "node -p -e \"'module.exports = \\'' + require('./package.json').version + '\\';'\" > src/version.js",
    "webpack": "webpack --progress --config webpack.config.js",
    "test:node": "mocha test/**/*.test.js",
    "test:browser": "karma start karma.config.js",
    "test:types": "tsd",
    "test": "npm run test:types && npm run test:node && npm run test:browser",
    "lint": "eslint -c .eslintrc.json --fix src && prettier --config .prettierrc.json --write src/**/*.js test/**/*.js examples/**/*.{js,ts,html} *.{js,ts}"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/PantelisGeorgiadis/dcmjs-ecg.git"
  },
  "keywords": [
    "DICOM",
    "ECG",
    "dcmjs"
  ],
  "author": "Pantelis Georgiadis",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/PantelisGeorgiadis/dcmjs-ecg/issues"
  },
  "homepage": "https://github.com/PantelisGeorgiadis/dcmjs-ecg",
  "dependencies": {
    "dcmjs": "^0.51.1",
    "loglevel": "^1.9.2",
    "loglevel-plugin-prefix": "^0.8.4"
  },
  "devDependencies": {
    "@types/node": "^25.9.0",
    "browserify": "^17.0.1",
    "c8": "^9.1.0",
    "chai": "^4.3.10",
    "copy-webpack-plugin": "^13.0.1",
    "docdash": "^2.0.2",
    "eslint": "^8.57.0",
    "jsdoc": "^4.0.5",
    "karma": "^6.4.4",
    "karma-browserify": "^8.1.0",
    "karma-chai": "^0.1.0",
    "karma-chrome-launcher": "^3.2.0",
    "karma-mocha": "^2.0.1",
    "karma-mocha-reporter": "^2.2.5",
    "mocha": "^11.7.5",
    "open-cli": "^7.2.0",
    "prettier": "^3.8.1",
    "shx": "^0.3.3",
    "terser-webpack-plugin": "^5.3.16",
    "ts-node": "^10.9.2",
    "tsd": "^0.33.0",
    "typescript": "^6.0.2",
    "webpack": "^5.105.2",
    "webpack-cli": "^6.0.1",
    "webpack-dev-server": "^4.15.2",
    "xml2js": "^0.6.2"
  }
}
