Node-Red configuration
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.4KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {
  2. "name": "delaunator",
  3. "version": "5.0.1",
  4. "description": "An incredibly fast JavaScript library for Delaunay triangulation of 2D points",
  5. "main": "index.js",
  6. "module": "index.js",
  7. "type": "module",
  8. "jsdelivr": "delaunator.min.js",
  9. "unpkg": "delaunator.min.js",
  10. "sideEffects": false,
  11. "dependencies": {
  12. "robust-predicates": "^3.0.2"
  13. },
  14. "devDependencies": {
  15. "@rollup/plugin-node-resolve": "^15.2.3",
  16. "@rollup/plugin-terser": "^0.4.4",
  17. "eslint": "^8.56.0",
  18. "eslint-config-mourner": "^3.0.0",
  19. "rollup": "^4.9.6"
  20. },
  21. "repository": {
  22. "type": "git",
  23. "url": "https://github.com/mapbox/delaunator.git"
  24. },
  25. "scripts": {
  26. "lint": "eslint index.js test/test.js bench.js rollup.config.js docs/diagrams.js",
  27. "pretest": "npm run lint",
  28. "test": "node --test-reporter spec test/test.js",
  29. "cov": "node --experimental-test-coverage test/test.js",
  30. "bench": "node bench.js",
  31. "build": "rollup -c",
  32. "start": "rollup -cw",
  33. "prepublishOnly": "npm test && npm run build"
  34. },
  35. "files": [
  36. "index.js",
  37. "delaunator.js",
  38. "delaunator.min.js"
  39. ],
  40. "eslintConfig": {
  41. "extends": "mourner",
  42. "rules": {
  43. "no-sequences": 0
  44. },
  45. "parserOptions": {
  46. "ecmaVersion": 2020
  47. }
  48. },
  49. "keywords": [
  50. "delaunay triangulation",
  51. "computational geometry",
  52. "algorithms"
  53. ],
  54. "author": "Vladimir Agafonkin",
  55. "license": "ISC"
  56. }