{
  "_from": "cytoscape@^3.2.11",
  "_id": "cytoscape@3.8.0",
  "_inBundle": false,
  "_integrity": "sha512-EYxj5roB5BKSHAVcRevZnYUOGUSG/KOjnXPE1/TfFpZlrqyvinpevc5pYpocQh8gyLKQ1vxvyl2uk9DHNDcqXA==",
  "_location": "/cytoscape",
  "_phantomChildren": {},
  "_requested": {
    "type": "range",
    "registry": true,
    "raw": "cytoscape@^3.2.11",
    "name": "cytoscape",
    "escapedName": "cytoscape",
    "rawSpec": "^3.2.11",
    "saveSpec": null,
    "fetchSpec": "^3.2.11"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/cytoscape/-/cytoscape-3.8.0.tgz",
  "_shasum": "5ce1b9c977c62652cfaa3d1e79a263503e2c87fa",
  "_spec": "cytoscape@^3.2.11",
  "_where": "/home/physikerwelt/git/ag-gipp/vmext/frontend",
  "author": {
    "name": "Max Franz",
    "email": "maxkfranz@gmail.com",
    "url": "http://maxfranz.com"
  },
  "bugs": {
    "url": "https://github.com/cytoscape/cytoscape.js/issues"
  },
  "bundleDependencies": false,
  "contributors": [
    {
      "name": "Max Franz",
      "email": "maxkfranz@gmail.com",
      "url": "http://maxfranz.com"
    },
    {
      "name": "Christian Lopes",
      "email": "chrtannus@gmail.com"
    },
    {
      "name": "Yue Dong",
      "email": "oryato@gmail.com"
    },
    {
      "name": "Onur Sumer",
      "email": "s.onur.sumer@gmail.com"
    },
    {
      "name": "Gerardo Huck",
      "email": "gerardohuck@gmail.com"
    },
    {
      "name": "Dylan Fong",
      "email": "dylanfong.ut@gmail.com"
    },
    {
      "name": "Joseph Stahl",
      "email": "joseph@josephstahl.com"
    }
  ],
  "dependencies": {
    "heap": "^0.2.6",
    "lodash.debounce": "^4.0.8"
  },
  "deprecated": false,
  "description": "Graph theory (a.k.a. network) library for analysis and visualisation",
  "devDependencies": {
    "@babel/core": "^7.3.4",
    "@babel/preset-env": "^7.3.4",
    "benchmark": "^2.1.4",
    "bluebird": "^3.5.0",
    "chai": "^4.1.2",
    "cpy-cli": "^2.0.0",
    "cross-env": "^5.1.3",
    "download-cli": "^1.0.5",
    "eslint": "^6.0.0",
    "esm": "^3.0.8",
    "gh-pages": "^2.0.1",
    "handlebars": "^4.1.2",
    "highlight.js": "^9.15.6",
    "http-server": "^0.11.1",
    "jsonlint": "^1.6.2",
    "livereload": "^0.8.0",
    "marked": "^0.6.2",
    "mocha": "^6.1.4",
    "npm-run-all": "^4.1.5",
    "rimraf": "^2.6.2",
    "rollup": "^1.16.2",
    "rollup-plugin-babel": "^4.3.0",
    "rollup-plugin-commonjs": "^10.0.0",
    "rollup-plugin-license": "^0.9.0",
    "rollup-plugin-node-resolve": "^5.0.0",
    "rollup-plugin-replace": "^2.0.0",
    "rollup-plugin-size-snapshot": "^0.9.0",
    "rollup-plugin-terser": "^5.0.0",
    "sniper": "^0.2.17",
    "update": "^0.7.4",
    "updater-license": "^1.0.0"
  },
  "engines": {
    "node": ">=0.10"
  },
  "homepage": "http://js.cytoscape.org",
  "jsdelivr": "dist/cytoscape.min.js",
  "keywords": [
    "graph",
    "graph-theory",
    "network",
    "node",
    "edge",
    "vertex",
    "link",
    "analysis",
    "visualisation",
    "visualization",
    "draw",
    "render",
    "biojs",
    "cytoscape"
  ],
  "license": "MIT",
  "main": "dist/cytoscape.cjs.js",
  "name": "cytoscape",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cytoscape/cytoscape.js.git"
  },
  "scripts": {
    "benchmark": "run-s benchmark:single",
    "benchmark:all": "run-s benchmark:download benchmark:all:exec",
    "benchmark:all:exec": "node benchmark/all",
    "benchmark:download": "download https://raw.githubusercontent.com/cytoscape/cytoscape.js/master/dist/cytoscape.js --out build --filename cytoscape.benchmark.js",
    "benchmark:single": "run-s benchmark:download benchmark:single:exec",
    "benchmark:single:exec": "node benchmark/single",
    "build": "rollup -c",
    "build:cjs": "cross-env FILE=cjs rollup -c",
    "build:esm": "cross-env FILE=esm rollup -c",
    "build:min": "cross-env FILE=min rollup -c",
    "build:umd": "cross-env FILE=umd rollup -c",
    "ci": "run-s test test:modules lint",
    "ci:build": "run-s build test:build test:modules lint",
    "clean": "rimraf build/*",
    "copyright": "update license",
    "dist": "cross-env NODE_ENV=production run-s build dist:*",
    "dist:copy": "cpy build/cytoscape.umd.js build/cytoscape.min.js build/cytoscape.cjs.js build/cytoscape.esm.js dist",
    "docs": "run-s docs:build docs:js",
    "docs:build": "node documentation/docmaker.js",
    "docs:js": "cpy build/cytoscape.min.js documentation/js",
    "docs:push": "gh-pages -d documentation",
    "lint": "eslint src benchmark",
    "postpublish": "run-s docs:push",
    "release": "run-s copyright dist docs",
    "sniper": "sniper .",
    "test": "mocha -r esm --recursive",
    "test:build": "cross-env TEST_BUILD=true mocha",
    "test:modules": "mocha -r esm test/modules",
    "watch": "run-s watch:fast",
    "watch:build:cjs": "cross-env FILE=cjs SOURCEMAPS=true NODE_ENV=development rollup -c -w",
    "watch:build:fast": "cross-env FILE=umd SOURCEMAPS=true BABEL=false NODE_ENV=development rollup -c -w",
    "watch:build:umd": "cross-env FILE=umd SOURCEMAPS=true NODE_ENV=development rollup -c -w",
    "watch:fast": "run-p watch:sync watch:http watch:build:fast",
    "watch:http": "http-server -s -c -1 -o",
    "watch:sync": "livereload \"build, debug\"",
    "watch:umd": "run-p watch:sync watch:http watch:build:umd"
  },
  "sniper": {
    "js": [
      "https://cdnjs.cloudflare.com/ajax/libs/fetch/2.0.3/fetch.min.js",
      "/build/cytoscape.js"
    ],
    "first": "images"
  },
  "unpkg": "dist/cytoscape.min.js",
  "version": "3.8.0"
}
