2023-11-09 18:47:11 +01:00

42 lines
1.0 KiB
JSON

{
"name": "@wry/trie",
"version": "0.3.1",
"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",
"prepare": "npm run build",
"test": "npm run build && npm run mocha"
},
"dependencies": {
"tslib": "^2.3.0"
},
"engines": {
"node": ">=8"
},
"gitHead": "91655122045a99ad445aa330e88905feb3775db6"
}