vis-network
Version:
A dynamic, browser-based visualization library.
143 lines (142 loc) • 5.5 kB
JSON
{
"name": "vis-network",
"version": "6.5.2",
"description": "A dynamic, browser-based visualization library.",
"homepage": "https://visjs.github.io/vis-network/",
"license": "(Apache-2.0 OR MIT)",
"repository": {
"type": "git",
"url": "https://github.com/visjs/vis-network.git"
},
"bugs": {
"url": "https://github.com/visjs/vis-network/issues"
},
"keywords": [
"vis",
"visualization",
"web based",
"browser based",
"typescript",
"javascript",
"chart",
"graph",
"network",
"browser"
],
"main": "dist/vis-network.min.js",
"module": "dist/vis-network.esm.min.js",
"types": "dist/types/index-legacy-bundle.d.ts",
"files": [
"LICENSE*",
"declarations",
"dist",
"peer",
"standalone",
"styles"
],
"funding": {
"type": "opencollective",
"url": "https://opencollective.com/visjs"
},
"scripts": {
"serve": "serve -l tcp://localhost:58253",
"test": "npm run test:unit && npm run test:e2e",
"test:e2e": "npm run test:e2e:headless",
"test:e2e:gui": "npm run test:e2e:gui:transpile; start-server-and-test test:e2e:gui:transpile-watch-and-serve http://localhost:58253 test:e2e:gui:test",
"test:e2e:gui:serve": "npm run serve",
"test:e2e:gui:test": "cypress open",
"test:e2e:gui:transpile": "tsc --project cypress",
"test:e2e:gui:transpile-and-watch": "npm run test:e2e:gui:transpile -- --watch",
"test:e2e:gui:transpile-watch-and-serve": "start-server-and-test test:e2e:gui:serve http://localhost:58253 test:e2e:gui:transpile-and-watch",
"test:e2e:headless": "start-server-and-test test:e2e:headless:serve http://localhost:58253 test:e2e:headless:transpile-and-test",
"test:e2e:headless:serve": "npm run serve",
"test:e2e:headless:test": "cypress run",
"test:e2e:headless:transpile": "tsc --project cypress",
"test:e2e:headless:transpile-and-test": "npm run test:e2e:headless:transpile && npm run test:e2e:headless:test",
"test:unit": "BABEL_ENV=test-cov nyc mocha --exit",
"build:legacy:types": "cpy --parents \"types/**/*\" dist && tsc -p tsconfig.types.json",
"build:legacy:code": "rollup --config rollup.config.js",
"build:legacy:images": "cpy \"lib/assets/*\" dist/img/network",
"build:declarations": "cpy --cwd=types --parents \"**/*\" ../declarations && tsc -p tsconfig.declarations.json",
"build:code": "rollup --config rollup.build.js",
"prepublishOnly": "npm run build",
"build": "npm run build:declarations && npm run build:code && npm run build:legacy:types && npm run build:legacy:code && npm run build:legacy:images",
"watch": "rollup --watch --config rollup.build.js",
"watch-dev": "npm run watch-dev",
"generate-examples-index": "generate-examples-index -t \"Vis Network Examples\" -c mynetwork -d ./examples -w https://visjs.github.io/vis-network -S ./scripts/examples-index/screenshot-script.js -lis",
"lint": "npm run lint:js && npm run lint:ts",
"lint:js": "eslint '{lib,test}/**/*.js'",
"lint:ts": "eslint '{cypress,lib,test}/**/*.ts'",
"clean": "rimraf \"declarations\" \"dist\" \"examples/index.html\" \"examples/thumbnails\" \"peer\" \"standalone\" \"styles\" \"vis-network*\" \"cypress/{fixtures,integration,pages,support}/**/*.js{,.map}\"",
"postinstall": "opencollective postinstall || exit 0"
},
"peerDependencies": {
"keycharm": "^0.2.0",
"moment": "^2.24.0",
"vis-data": "^6.2.1",
"vis-util": "^1.1.8"
},
"devDependencies": {
"@babel/core": "7.8.0",
"@babel/plugin-proposal-class-properties": "7.8.0",
"@babel/plugin-transform-runtime": "7.8.0",
"@babel/preset-env": "7.8.0",
"@babel/preset-typescript": "7.7.7",
"@babel/register": "7.8.0",
"@babel/runtime-corejs3": "7.8.0",
"@egjs/hammerjs": "2.0.17",
"@semantic-release/commit-analyzer": "7.0.0",
"@semantic-release/github": "6.0.0",
"@semantic-release/npm": "5.3.5",
"@semantic-release/release-notes-generator": "7.3.5",
"@types/chai": "4.2.7",
"@types/mocha": "5.2.7",
"@types/sinon": "7.5.1",
"@types/timsort": "0.3.0",
"@typescript-eslint/eslint-plugin": "2.9.0",
"@typescript-eslint/parser": "2.13.0",
"babel-plugin-css-modules-transform": "1.6.2",
"babel-plugin-istanbul": "6.0.0",
"chai": "4.2.0",
"component-emitter": "1.3.0",
"cpy-cli": "3.0.0",
"cypress": "3.8.1",
"eslint": "6.8.0",
"eslint-config-prettier": "6.9.0",
"eslint-plugin-cypress": "2.8.1",
"eslint-plugin-prettier": "3.1.2",
"gh-pages": "2.1.1",
"jsdoc": "3.6.3",
"jsdom": "15.2.1",
"jsdom-global": "3.0.2",
"keycharm": "0.3.1",
"mocha": "6.2.2",
"moment": "2.24.0",
"nyc": "15.0.0",
"opencollective": "1.0.3",
"postcss-assets": "5.0.0",
"prettier": "1.19.1",
"rimraf": "3.0.0",
"rollup": "1.27.6",
"rollup-plugin-babel": "4.3.3",
"rollup-plugin-commonjs": "10.1.0",
"rollup-plugin-copy": "3.1.0",
"rollup-plugin-node-resolve": "5.2.0",
"rollup-plugin-postcss": "2.0.3",
"rollup-plugin-terser": "5.1.3",
"rollup-plugin-typescript2": "0.25.3",
"semantic-release": "16.0.0",
"serve": "11.2.0",
"sinon": "8.0.2",
"start-server-and-test": "1.10.6",
"timsort": "0.3.0",
"typescript": "3.7.2",
"vis-data": "6.3.2",
"vis-dev-utils": "1.2.0",
"vis-util": "2.0.2"
},
"collective": {
"type": "opencollective",
"url": "https://opencollective.com/visjs"
}
}