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

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "name": "internmap",
  3. "version": "2.0.3",
  4. "description": "Map and Set with automatic key interning",
  5. "homepage": "https://github.com/mbostock/internmap/",
  6. "license": "ISC",
  7. "author": {
  8. "name": "Mike Bostock",
  9. "url": "https://bost.ocks.org/mike"
  10. },
  11. "type": "module",
  12. "main": "src/index.js",
  13. "module": "src/index.js",
  14. "jsdelivr": "dist/internmap.min.js",
  15. "unpkg": "dist/internmap.min.js",
  16. "exports": {
  17. "umd": "./dist/internmap.min.js",
  18. "default": "./src/index.js"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/mbostock/internmap.git"
  23. },
  24. "files": [
  25. "dist/**/*.js",
  26. "src/**/*.js"
  27. ],
  28. "scripts": {
  29. "test": "mocha 'test/**/*-test.js' && eslint src test",
  30. "prepublishOnly": "rm -rf dist && yarn test && rollup -c",
  31. "postpublish": "git push && git push --tags"
  32. },
  33. "sideEffects": false,
  34. "devDependencies": {
  35. "eslint": "^7.32.0",
  36. "mocha": "^9.1.1",
  37. "rollup": "^2.56.3",
  38. "rollup-plugin-terser": "^7.0.2"
  39. },
  40. "engines": {
  41. "node": ">=12"
  42. }
  43. }