package.json 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "marchingsquares",
  3. "description": "MarchingSquaresJS - An implementation of the Marching Squares algorithm featuring Isocontour and Isoband computation.",
  4. "version": "1.3.3",
  5. "author": "Ronny Lorenz <ronny@tbi.univie.ac.at>",
  6. "contributors": [
  7. {"name": "Stefano Borghi"},
  8. {"name": "Peter Kerpedjiev"}
  9. ],
  10. "license": "AGPL-3.0",
  11. "main": "./dist/marchingsquares.js",
  12. "module": "./dist/marchingsquares-esm.js",
  13. "directories": {
  14. "example": "./example",
  15. "dist": "./dist"
  16. },
  17. "scripts": {
  18. "lint": "eslint --fix src/**",
  19. "build": "rollup -c",
  20. "pretest": "rollup -c rollup.config.test.js",
  21. "test": "node ./test/test.js"
  22. },
  23. "homepage": "https://github.com/RaumZeit/MarchingSquares.js/blob/master/README.md",
  24. "repository": {
  25. "type": "git",
  26. "url": "git://github.com/RaumZeit/MarchingSquares.js.git"
  27. },
  28. "bugs": {
  29. "url": "https://github.com/RaumZeit/MarchingSquares.js/issues"
  30. },
  31. "keywords": [
  32. "marchingsquares",
  33. "marching",
  34. "squares",
  35. "isocontour",
  36. "isoband",
  37. "isoline"
  38. ],
  39. "devDependencies": {
  40. "eslint": "5.0.1",
  41. "load-json-file": "^2.0.0",
  42. "rollup": "^0.60.7",
  43. "rollup-plugin-eslint": "^4.0.0",
  44. "rollup-plugin-uglify": "^4.0.0",
  45. "tape": "^4.9.1"
  46. }
  47. }