package.json 893 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "char-regex",
  3. "version": "1.0.2",
  4. "description": "A regex to match any full character, considering weird character ranges.",
  5. "repository": "https://github.com/Richienb/char-regex.git",
  6. "author": "Richie Bendall <richiebendall@gmail.com>",
  7. "license": "MIT",
  8. "main": "index.js",
  9. "files": [
  10. "index.js",
  11. "index.d.ts"
  12. ],
  13. "engines": {
  14. "node": ">=10"
  15. },
  16. "scripts": {
  17. "lint": "xo",
  18. "test": "yarn lint && ava"
  19. },
  20. "keywords": [
  21. "character",
  22. "regex",
  23. "match",
  24. "split",
  25. "length"
  26. ],
  27. "dependencies": {},
  28. "devDependencies": {
  29. "@babel/core": "^7.8.4",
  30. "@babel/plugin-proposal-unicode-property-regex": "^7.8.3",
  31. "array-uniq": "^2.1.0",
  32. "ava": "^3.0.0",
  33. "emoji.json": "^12.1.1",
  34. "eslint-config-richienb": "^0.3.0",
  35. "unicode-chars": "^1.0.1",
  36. "xo": "^0.25.3"
  37. },
  38. "resolutions": {
  39. "eslint": "^6.8.0"
  40. },
  41. "xo": {
  42. "extends": "richienb/node"
  43. }
  44. }