package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. {
  2. "name": "unicode-property-aliases-ecmascript",
  3. "version": "2.2.0",
  4. "description": "Unicode property alias mappings in JavaScript format for property names that are supported in ECMAScript RegExp property escapes.",
  5. "homepage": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript",
  6. "main": "index.js",
  7. "engines": {
  8. "node": ">=4"
  9. },
  10. "files": [
  11. "LICENSE-MIT.txt",
  12. "index.js"
  13. ],
  14. "keywords": [
  15. "unicode",
  16. "unicode-data",
  17. "alias",
  18. "aliases",
  19. "property alias"
  20. ],
  21. "license": "MIT",
  22. "author": {
  23. "name": "Mathias Bynens",
  24. "url": "https://mathiasbynens.be/"
  25. },
  26. "repository": {
  27. "type": "git",
  28. "url": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript.git"
  29. },
  30. "bugs": "https://github.com/mathiasbynens/unicode-property-aliases-ecmascript/issues",
  31. "devDependencies": {
  32. "jsesc": "^3.0.2",
  33. "unicode-canonical-property-names-ecmascript": "^2.0.0"
  34. },
  35. "scripts": {
  36. "download": "curl -L https://unicode.org/Public/17.0.0/ucd/PropertyAliases.txt > data/PropertyAliases.txt",
  37. "build": "node scripts/build.js",
  38. "test": "node --test tests/tests.js"
  39. }
  40. }