package.json 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. {
  2. "name": "regenerate-unicode-properties",
  3. "version": "10.2.2",
  4. "description": "Regenerate sets for Unicode properties and values.",
  5. "homepage": "https://github.com/mathiasbynens/regenerate-unicode-properties",
  6. "main": "index.js",
  7. "engines": {
  8. "node": ">=4"
  9. },
  10. "files": [
  11. "LICENSE-MIT.txt",
  12. "index.js",
  13. "unicode-version.js",
  14. "Binary_Property",
  15. "General_Category",
  16. "Property_of_Strings",
  17. "Script",
  18. "Script_Extensions"
  19. ],
  20. "keywords": [
  21. "unicode",
  22. "unicode-data",
  23. "regenerate"
  24. ],
  25. "license": "MIT",
  26. "author": {
  27. "name": "Mathias Bynens",
  28. "url": "https://mathiasbynens.be/"
  29. },
  30. "repository": {
  31. "type": "git",
  32. "url": "https://github.com/mathiasbynens/regenerate-unicode-properties.git"
  33. },
  34. "bugs": "https://github.com/mathiasbynens/regenerate-unicode-properties/issues",
  35. "dependencies": {
  36. "regenerate": "^1.4.2"
  37. },
  38. "devDependencies": {
  39. "@unicode/unicode-17.0.0": "^1.6.12",
  40. "jsesc": "^3.1.0",
  41. "unicode-canonical-property-names-ecmascript": "^2.0.1"
  42. },
  43. "scripts": {
  44. "build": "node build.js",
  45. "test": "node --test tests/tests.js"
  46. }
  47. }