forked from skiff-org/trawler
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.38 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "@skiff-org/trawler",
"version": "0.1.10",
"description": "A modern search library for Skiff",
"homepage": "https://github.com/skiff-org/trawler/",
"author": "Thomas Wilkerling",
"contributors": [
"Andrew Lee"
],
"copyright": [
"Nextapps GmbH",
"Skiff World, Inc."
],
"license": "Apache-2.0",
"module": "dist/esm/lib.js",
"main": "dist/cjs/lib.js",
"keywords": [
"fulltext search",
"elastic search",
"fastest search",
"contextual search",
"document search",
"fuzzy search",
"fuzzy match",
"search engine"
],
"bugs": {
"url": "https://github.com/skiff-org/trawler/issues",
"email": "[email protected]"
},
"types": "./index.d.ts",
"type": "module",
"preferGlobal": false,
"repository": {
"type": "git",
"url": "https://github.com/skiff-org/trawler.git"
},
"scripts": {
"lint": "yarn run eslint src",
"build": "rollup --config",
"watch": "rollup --config --watch",
"test": "ava"
},
"files": [
"dist/**",
"src/**",
"task/**",
"index.d.ts",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"readme": "README.md",
"devDependencies": {
"@babel/core": "^7.15.5",
"@babel/preset-env": "^7.15.6",
"@rollup/plugin-babel": "^5.3.0",
"ava": "^3.15.0",
"eslint": "^7.32.0",
"rollup": "^2.56.2",
"rollup-plugin-terser": "^7.0.2"
}
}