{
  "alias": "trie.js",
  "author": {
    "email": "stephen.isienyi@webkrafting.com",
    "name": "Stephen Isienyi"
  },
  "bugs": {
    "url": "https://github.com/webKrafters/trie.js/issues"
  },
  "contributors": [
    "steveswork <stephen.isienyi@gmail.com> (https://github.com/steveswork)"
  ],
  "description": "Trie - trie data structure accepting any data type",
  "devDependencies": {
    "@babel/cli": "^7.17.0",
    "@babel/core": "^7.20.5",
    "@babel/node": "^7.12.10",
    "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6",
    "@babel/plugin-transform-runtime": "^7.17.0",
    "@babel/preset-env": "^7.20.2",
    "@types/jest": "^29.5.12",
    "@types/lodash": "^4.17.0",
    "@types/node": "^20.13.0",
    "babel-loader": "^8.2.5",
    "jest": "^29.7.0",
    "ts-jest": "^29.1.2",
    "ts-node": "^10.9.2",
    "typescript": "^5.4.2"
  },
  "files": [
    "dist",
    "logo.png"
  ],
  "homepage": "https://github.com/webKrafters/trie.js/blob/master/docs.md",
  "keywords": [
    "base-trie",
    "trie",
    "data structure",
    "data-structure",
    "readonly",
    "prefix",
    "prefix-trie"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "name": "@webkrafters/trie",
  "publishConfig": {
    "access": "public"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/webKrafters/trie.js.git"
  },
  "scripts": {
    "build": "rm -rf dist && tsc && babel dist -d dist",
    "test": "jest --coverage --updateSnapshot",
    "test:clean": "jest --clearCache",
    "test:core": "jest --updateSnapshot",
    "test:watch": "jest --updateSnapshot --watchAll"
  },
  "types": "dist/index.d.ts",
  "version": "0.7.1"
}
