package.json 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. {
  2. "name": "turf-jsts",
  3. "description": "A JavaScript library of spatial predicates and functions for processing geometry",
  4. "version": "1.2.3",
  5. "main": "jsts.js",
  6. "module": "jsts.mjs",
  7. "browser": "jsts.min.js",
  8. "files": [
  9. "jsts.js",
  10. "jsts.mjs",
  11. "jsts.min.js",
  12. "src"
  13. ],
  14. "author": "Björn Harrtell <bjorn@wololo.org>",
  15. "contributors": [
  16. "Denis Carriere <@DenisCarriere>"
  17. ],
  18. "keywords": [
  19. "Turf",
  20. "JSTS",
  21. "JavaScript",
  22. "JTS",
  23. "Java",
  24. "Topology",
  25. "Geometry"
  26. ],
  27. "license": "(EDL-1.0 OR EPL-1.0)",
  28. "devDependencies": {
  29. "@std/esm": "*",
  30. "chai": "*",
  31. "cheerio": "*",
  32. "expect.js": "*",
  33. "git-rev-sync": "*",
  34. "jsdoc": "*",
  35. "mocha": "*",
  36. "react-scripts": "*",
  37. "rollup": "*",
  38. "rollup-plugin-buble": "*",
  39. "rollup-plugin-uglify": "*",
  40. "standard": "*",
  41. "uglify-js": "*"
  42. },
  43. "repository": {
  44. "type": "git",
  45. "url": "git://github.com/DenisCarriere/turf-jsts.git"
  46. },
  47. "standard": {
  48. "globals": [
  49. "describe",
  50. "it",
  51. "jsts",
  52. "ol"
  53. ]
  54. },
  55. "scripts": {
  56. "prepublish": "rollup -c rollup.config.js",
  57. "test": "NODE_PATH=src mocha -r @std/esm --recursive test/auto/node test/manual",
  58. "test-manual": "NODE_PATH=src mocha -r @std/esm test/manual",
  59. "create-react-app": "react-scripts build"
  60. },
  61. "@std/esm": {
  62. "esm": "js",
  63. "cjs": true
  64. }
  65. }