package.json 881 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "orderedmap",
  3. "version": "2.1.1",
  4. "description": "Persistent ordered mapping from strings",
  5. "type": "module",
  6. "main": "dist/index.cjs",
  7. "types": "dist/index.d.ts",
  8. "module": "dist/index.js",
  9. "exports": {
  10. "import": "./dist/index.js",
  11. "require": "./dist/index.cjs"
  12. },
  13. "sideEffects": false,
  14. "files": [
  15. "dist/*"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/marijnh/orderedmap.git"
  20. },
  21. "keywords": [
  22. "persistent",
  23. "map"
  24. ],
  25. "author": "Marijn Haverbeke <marijn@haverbeke.berlin>",
  26. "license": "MIT",
  27. "bugs": {
  28. "url": "https://github.com/marijnh/orderedmap/issues"
  29. },
  30. "homepage": "https://github.com/marijnh/orderedmap#readme",
  31. "scripts": {
  32. "build": "rollup -c",
  33. "watch": "rollup -c -w",
  34. "prepare": "npm run build"
  35. },
  36. "devDependencies": {
  37. "rollup": "^1.26.3"
  38. }
  39. }