package.json 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {
  2. "name": "cytoscape-cose-bilkent",
  3. "version": "4.1.0",
  4. "description": "The CoSE layout for Cytoscape.js by Bilkent with enhanced compound node placement",
  5. "main": "cytoscape-cose-bilkent.js",
  6. "scripts": {
  7. "postpublish": "run-s gh-pages",
  8. "gh-pages": "gh-pages -d pages",
  9. "copyright": "update license",
  10. "lint": "eslint src",
  11. "build": "cross-env NODE_ENV=production webpack",
  12. "build:min": "cross-env NODE_ENV=production MIN=true webpack",
  13. "build:release": "run-s build copyright",
  14. "watch": "webpack --progress --watch",
  15. "dev": "webpack-dev-server --open",
  16. "test": "mocha"
  17. },
  18. "repository": {
  19. "type": "git",
  20. "url": "https://github.com/cytoscape/cytoscape.js-cose-bilkent.git"
  21. },
  22. "keywords": [
  23. "cytoscape",
  24. "cytoscape-extension"
  25. ],
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/cytoscape/cytoscape.js-cose-bilkent/issues"
  29. },
  30. "homepage": "https://github.com/cytoscape/cytoscape.js-cose-bilkent",
  31. "devDependencies": {
  32. "babel-core": "^6.24.1",
  33. "babel-loader": "^7.0.0",
  34. "babel-preset-env": "^1.5.1",
  35. "camelcase": "^4.1.0",
  36. "chai": "4.0.2",
  37. "cpy-cli": "^1.0.1",
  38. "cross-env": "^5.0.0",
  39. "eslint": "^3.9.1",
  40. "gh-pages": "^1.0.0",
  41. "mocha": "3.4.2",
  42. "npm-run-all": "^4.1.2",
  43. "rimraf": "^2.6.2",
  44. "update": "^0.7.4",
  45. "updater-license": "^1.0.0",
  46. "webpack": "^2.6.1",
  47. "webpack-dev-server": "^2.4.5"
  48. },
  49. "peerDependencies": {
  50. "cytoscape": "^3.2.0"
  51. },
  52. "dependencies": {
  53. "cose-base": "^1.0.0"
  54. }
  55. }