package.json 903 B

12345678910111213141516171819202122232425262728293031323334
  1. {
  2. "name": "unicode-canonical-property-names-ecmascript",
  3. "version": "2.0.0",
  4. "description": "The set of canonical Unicode property names supported in ECMAScript RegExp property escapes.",
  5. "homepage": "https://github.com/mathiasbynens/unicode-canonical-property-names-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 properties"
  17. ],
  18. "license": "MIT",
  19. "author": {
  20. "name": "Mathias Bynens",
  21. "url": "https://mathiasbynens.be/"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript.git"
  26. },
  27. "bugs": "https://github.com/mathiasbynens/unicode-canonical-property-names-ecmascript/issues",
  28. "devDependencies": {
  29. "ava": "*"
  30. },
  31. "scripts": {
  32. "test": "ava tests/tests.js"
  33. }
  34. }