package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "unicode-match-property-value-ecmascript",
  3. "version": "2.0.0",
  4. "description": "Match a Unicode property or property alias to its canonical property name per the algorithm used for RegExp Unicode property escapes in ECMAScript.",
  5. "homepage": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript",
  6. "main": "index.js",
  7. "engines": {
  8. "node": ">=4"
  9. },
  10. "files": [
  11. "LICENSE-MIT.txt",
  12. "data/mappings.js",
  13. "index.js"
  14. ],
  15. "keywords": [
  16. "unicode",
  17. "unicode property values",
  18. "unicode property value aliases"
  19. ],
  20. "license": "MIT",
  21. "author": {
  22. "name": "Mathias Bynens",
  23. "url": "https://mathiasbynens.be/"
  24. },
  25. "repository": {
  26. "type": "git",
  27. "url": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript.git"
  28. },
  29. "bugs": "https://github.com/mathiasbynens/unicode-match-property-value-ecmascript/issues",
  30. "devDependencies": {
  31. "ava": "*",
  32. "jsesc": "^3.0.2",
  33. "unicode-property-value-aliases-ecmascript": "^2.0.0"
  34. },
  35. "scripts": {
  36. "build": "node scripts/build.js",
  37. "test": "ava tests/tests.js"
  38. }
  39. }