-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 858 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{
"name": "simple-text-search",
"version": "0.0.0-placeholder",
"description": "A small in-memory text search that supports umlauts",
"keywords": [
"search",
"filter",
"text",
"diacritics",
"umlaut"
],
"main": "index.js",
"scripts": {
"test": "standard && node test.js"
},
"author": "Marc Bachmann <[email protected]>",
"license": "MIT",
"devDependencies": {
"nanobench": "^3.0.0",
"standard": "^17.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/marcbachmann/simple-text-search.git"
},
"bugs": {
"url": "https://github.com/marcbachmann/simple-text-search/issues"
},
"homepage": "https://github.com/marcbachmann/simple-text-search#readme",
"release": {
"extends": "@livingdocs/semantic-release-presets/npm-github",
"branches": ["main"]
}
}