You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

28 lines
683 B

  1. {
  2. "name": "unicode-trie",
  3. "version": "2.0.0",
  4. "description": "Unicode Trie data structure for fast character metadata lookup, ported from ICU",
  5. "devDependencies": {
  6. "mocha": "^6.1.4",
  7. "nyc": "^14.1.1"
  8. },
  9. "scripts": {
  10. "test": "mocha",
  11. "coverage": "nyc mocha"
  12. },
  13. "repository": {
  14. "type": "git",
  15. "url": "git://github.com/devongovett/unicode-trie.git"
  16. },
  17. "author": "Devon Govett <devongovett@gmail.com>",
  18. "license": "MIT",
  19. "bugs": {
  20. "url": "https://github.com/devongovett/unicode-trie/issues"
  21. },
  22. "homepage": "https://github.com/devongovett/unicode-trie",
  23. "dependencies": {
  24. "pako": "^0.2.5",
  25. "tiny-inflate": "^1.0.0"
  26. }
  27. }