{
  "name": "@wry/trie",
  "version": "0.3.0",
  "author": "Ben Newman <ben@eloper.dev>",
  "description": "https://en.wikipedia.org/wiki/Trie",
  "license": "MIT",
  "main": "lib/trie.js",
  "module": "lib/trie.esm.js",
  "types": "lib/trie.d.ts",
  "keywords": [
    "trie",
    "prefix",
    "weak",
    "dictionary",
    "lexicon"
  ],
  "homepage": "https://github.com/benjamn/wryware",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/benjamn/wryware.git"
  },
  "bugs": {
    "url": "https://github.com/benjamn/wryware/issues"
  },
  "scripts": {
    "clean": "../../node_modules/.bin/rimraf lib",
    "tsc": "../../node_modules/.bin/tsc",
    "rollup": "../../node_modules/.bin/rollup -c",
    "build": "npm run clean && npm run tsc && npm run rollup",
    "mocha": "../../scripts/test.sh lib/tests.js",
    "prepublish": "npm run build",
    "test": "npm run build && npm run mocha"
  },
  "dependencies": {
    "tslib": "^2.1.0"
  },
  "engines": {
    "node": ">=8"
  },
  "gitHead": "41f90c1a6e1103645d608a298999092dde6d62ad"
}
