{
  "name": "phovea_importer",
  "description": "Flexible smart and visual data importer for web based visualization",
  "homepage": "https://phovea.caleydo.org",
  "version": "8.0.0",
  "author": {
    "name": "The Caleydo Team",
    "email": "contact@caleydo.org",
    "url": "https://caleydo.org"
  },
  "license": "BSD-3-Clause",
  "bugs": {
    "url": "https://github.com/phovea/phovea_importer/issues"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:phovea/phovea_importer.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "src",
    "phovea_registry.js",
    "dist"
  ],
  "engines": {
    "npm": ">= 6.12",
    "node": ">= 12.13"
  },
  "scripts": {
    "clean": "rimraf lib dist",
    "delete-dependencies": "rimraf node_modules",
    "compile": "tsc",
    "compile:watch": "tsc -w",
    "postcompile": "npm run copy",
    "lint": "tslint -c tslint.json -p . 'src/**/*.ts?(x)' 'tests/**/*.ts?(x)'",
    "docs": "typedoc --options typedoc.json src/**.ts",
    "prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test",
    "test": "jest --passWithNoTests",
    "test:watch": "jest --watch",
    "posttest": "npm run lint",
    "build": "npm run clean && npm run compile",
    "copy": "npm run copy-assets && npm run copy-styles",
    "copy-assets": "if [ -d src/assets ]; then shx --verbose cp -R src/assets/. dist/assets/; fi",
    "copy-styles": "if [ -d src/scss ]; then shx --verbose cp -R src/scss/. dist/scss/; fi",
    "release:major": "npm version major && npm publish && git push --follow-tags",
    "release:minor": "npm version minor && npm publish && git push --follow-tags",
    "release:patch": "npm version patch && npm publish && git push --follow-tags",
    "predist": "npm run build && npm run docs",
    "dist": "mkdir lib && cd dist && tar cvzf ../lib/phovea_importer.tar.gz *"
  },
  "devDependencies": {
    "@types/d3": "~3.5.36",
    "@types/papaparse": "~5.2.4",
    "@types/jest": "~26.0.20",
    "identity-obj-proxy": "~3.0.0",
    "jest": "~26.6.3",
    "jest-raw-loader": "~1.0.1",
    "rimraf": "~3.0.2",
    "shx": "~0.3.3",
    "ts-jest": "~26.4.4",
    "tslib": "~2.0.3",
    "tslint": "~5.20.1",
    "typedoc": "~0.19.2",
    "typescript": "~3.9.7"
  },
  "dependencies": {
    "d3": "~3.5.17",
    "papaparse": "~5.3.0",
    "phovea_core": "^7.0.0",
    "phovea_d3": "^6.1.0",
    "phovea_ui": "^7.0.0"
  }
}
