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.

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. {
  2. "name": "d3-array",
  3. "version": "3.2.4",
  4. "description": "Array manipulation, ordering, searching, summarizing, etc.",
  5. "homepage": "https://d3js.org/d3-array/",
  6. "repository": {
  7. "type": "git",
  8. "url": "https://github.com/d3/d3-array.git"
  9. },
  10. "keywords": [
  11. "d3",
  12. "d3-module",
  13. "histogram",
  14. "bisect",
  15. "shuffle",
  16. "statistics",
  17. "search",
  18. "sort",
  19. "array"
  20. ],
  21. "license": "ISC",
  22. "author": {
  23. "name": "Mike Bostock",
  24. "url": "http://bost.ocks.org/mike"
  25. },
  26. "type": "module",
  27. "files": [
  28. "dist/**/*.js",
  29. "src/**/*.js"
  30. ],
  31. "module": "src/index.js",
  32. "main": "src/index.js",
  33. "jsdelivr": "dist/d3-array.min.js",
  34. "unpkg": "dist/d3-array.min.js",
  35. "exports": {
  36. "umd": "./dist/d3-array.min.js",
  37. "default": "./src/index.js"
  38. },
  39. "sideEffects": false,
  40. "dependencies": {
  41. "internmap": "1 - 2"
  42. },
  43. "devDependencies": {
  44. "@rollup/plugin-node-resolve": "15",
  45. "d3-dsv": "3",
  46. "d3-random": "2 - 3",
  47. "eslint": "8",
  48. "jsdom": "21",
  49. "mocha": "10",
  50. "rollup": "3",
  51. "rollup-plugin-terser": "7"
  52. },
  53. "scripts": {
  54. "test": "mocha 'test/**/*-test.js' && eslint src test",
  55. "prepublishOnly": "rm -rf dist && rollup -c",
  56. "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 -"
  57. },
  58. "engines": {
  59. "node": ">=12"
  60. }
  61. }