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.5KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "d3-quadtree",
  3. "version": "3.0.1",
  4. "description": "Two-dimensional recursive spatial subdivision.",
  5. "homepage": "https://d3js.org/d3-quadtree/",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/d3/d3-quadtree.git"
  9. },
  10. "keywords": [
  11. "d3",
  12. "d3-module",
  13. "quadtree"
  14. ],
  15. "license": "ISC",
  16. "author": {
  17. "name": "Mike Bostock",
  18. "url": "http://bost.ocks.org/mike"
  19. },
  20. "type": "module",
  21. "files": [
  22. "dist/**/*.js",
  23. "src/**/*.js"
  24. ],
  25. "module": "src/index.js",
  26. "main": "src/index.js",
  27. "jsdelivr": "dist/d3-quadtree.min.js",
  28. "unpkg": "dist/d3-quadtree.min.js",
  29. "exports": {
  30. "umd": "./dist/d3-quadtree.min.js",
  31. "default": "./src/index.js"
  32. },
  33. "sideEffects": false,
  34. "devDependencies": {
  35. "d3-array": "1 - 2",
  36. "eslint": "7",
  37. "mocha": "8",
  38. "rollup": "2",
  39. "rollup-plugin-terser": "7"
  40. },
  41. "scripts": {
  42. "test": "mocha 'test/**/*-test.js' && eslint src test",
  43. "prepublishOnly": "rm -rf dist && yarn test && rollup -c",
  44. "postpublish": "git push && git push --tags && cd ../d3.github.com && git pull && cp ../${npm_package_name}/dist/${npm_package_name}.js ${npm_package_name}.v${npm_package_version%%.*}.js && cp ../${npm_package_name}/dist/${npm_package_name}.min.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git add ${npm_package_name}.v${npm_package_version%%.*}.js ${npm_package_name}.v${npm_package_version%%.*}.min.js && git commit -m \"${npm_package_name} ${npm_package_version}\" && git push && cd -"
  45. },
  46. "engines": {
  47. "node": ">=12"
  48. }
  49. }