compact-prefix-tree
Version:
A serializable compact prefix trie
35 lines (34 loc) • 910 B
JSON
{
"name": "compact-prefix-tree",
"version": "2.0.2",
"description": "A serializable compact prefix trie",
"main": "index.js",
"scripts": {
"build": "npm run build:amd && npm run build:cjs && npm run build:esm",
"clean": "rm -rf index.js index.d.ts amd/ cjs/",
"dev": "tsc -w",
"prepare": "npm run build",
"test": "jest",
"build:amd": "tsc index.ts -m amd -t es6 --outDir amd",
"build:cjs": "tsc index.ts -m commonjs -t es6 --outDir cjs",
"build:esm": "tsc index.ts -m esnext -t esnext -d"
},
"keywords": [
"compact-prefix-tree",
"compact-radix-tree",
"compact-trie",
"data-structure",
"patricia-tree",
"prefix-tree",
"prefix",
"radix-tree",
"trie"
],
"author": "Sid Vishnoi <sidvishnoi8@gmail.com>",
"license": "MIT",
"types": "index.d.ts",
"devDependencies": {
"jest": "^23.6.0",
"typescript": "^3.5.3"
}
}