smartfuzzy/package.json

54 lines
1.2 KiB
JSON
Raw Normal View History

2018-08-19 13:17:59 +00:00
{
2023-07-10 00:56:01 +00:00
"name": "@push.rocks/smartfuzzy",
2021-10-04 11:43:57 +00:00
"version": "1.1.6",
2018-08-19 13:17:59 +00:00
"private": false,
2024-04-14 15:37:33 +00:00
"description": "A library for fuzzy matching strings against word dictionaries or arrays, with support for object and article searching.",
2021-10-03 15:37:03 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2018-08-19 13:17:59 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"format": "(gitzone format)",
"build": "(tsbuild)"
},
"devDependencies": {
2021-10-03 15:12:02 +00:00
"@gitzone/tsbuild": "^2.1.27",
"@gitzone/tstest": "^1.0.57",
"@pushrocks/tapbundle": "^3.2.14",
2021-10-03 15:37:03 +00:00
"@types/node": "^16.10.2"
2018-08-19 13:17:59 +00:00
},
"dependencies": {
2021-10-03 15:12:02 +00:00
"@pushrocks/smartpromise": "^3.1.6",
"@tsclass/tsclass": "^3.0.33",
"fuse.js": "^6.4.6",
"leven": "^3.1.0"
2021-10-03 15:37:03 +00:00
},
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 15:37:33 +00:00
],
"keywords": [
"fuzzy matching",
"string matching",
"dictionary matching",
"search",
"text analysis",
"object sorting",
"article search",
"text similarity",
"keyword matching",
"data filtering"
2021-10-03 15:37:03 +00:00
]
2023-07-10 00:56:01 +00:00
}