UNPKG

@tanishiking/aho-corasick

Version:

TypeScript implementation of the Aho-Corasick algorithm for efficient string matching

47 lines (46 loc) 1.24 kB
{ "name": "@tanishiking/aho-corasick", "version": "0.0.1", "homepage": "https://github.com/tanishiking/aho-corasick-js", "repository": { "type": "git", "url": "https://github.com/tanishiking/aho-corasick-js" }, "main": "dist/trie.js", "types": "dist/trie.d.ts", "description": "TypeScript implementation of the Aho-Corasick algorithm for efficient string matching", "keywords": [ "aho-corasick", "trie", "string", "search", "match" ], "publishConfig": { "access": "public" }, "scripts": { "build": "tsc --project .", "test": "jest", "prepublishOnly": "yarn run build" }, "files": [ "dist" ], "author": "Rikito Taniguchi <rikiriki1238@gmail.com> (https://github.com/tanishiking/)", "license": "Apache-2.0", "devDependencies": { "@types/jest": "^25.2.1", "@typescript-eslint/eslint-plugin": "^2.33.0", "@typescript-eslint/parser": "^2.33.0", "eslint": "^7.0.0", "eslint-config-standard": "^14.1.1", "eslint-plugin-import": "^2.20.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^4.2.1", "eslint-plugin-standard": "^4.0.1", "jest": "^26.0.1", "ts-jest": "^26.0.0", "typescript": "^3.9.2" } }