forked from nextapps-de/flexsearch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 5.32 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "flexsearch",
"version": "0.7.0",
"description": "Next-Generation full text search library with zero dependencies.",
"homepage": "https://github.com/nextapps-de/flexsearch/",
"author": "Thomas Wilkerling",
"copyright": "Nextapps GmbH",
"license": "Apache-2.0",
"keywords": [
"fulltext search",
"elastic search",
"fastest search",
"contextual search",
"fuzzy search"
],
"bugs": {
"url": "https://github.com/nextapps-de/flexsearch/issues",
"email": "[email protected]"
},
"main": "dist/flexsearch.node.js",
"browser": "dist/flexsearch.min.js",
"types": "index.d.ts",
"preferGlobal": false,
"bin": {},
"repository": {
"type": "git",
"url": "https://github.com/nextapps-de/flexsearch.git"
},
"scripts": {
"build": "node task/build RELEASE=min DEBUG=false PROFILER=false POLYFILL=true SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_LANG=false SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_PRESET=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_INFO=true SUPPORT_DOCUMENT=true SUPPORT_OPERATOR=true SUPPORT_WHERE=true SUPPORT_PAGINATION=true",
"build:debug": "node task/build RELEASE=debug DEBUG=true PROFILER=false POLYFILL=true SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_LANG=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_PRESET=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_INFO=true SUPPORT_DOCUMENT=true SUPPORT_OPERATOR=true SUPPORT_WHERE=true SUPPORT_PAGINATION=true",
"build:compact": "node task/build RELEASE=compact DEBUG=false PROFILER=false POLYFILL=true SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_LANG=false SUPPORT_CACHE=false SUPPORT_ASYNC=true SUPPORT_PRESET=true SUPPORT_SUGGESTION=false SUPPORT_SERIALIZE=false SUPPORT_INFO=false SUPPORT_DOCUMENT=true SUPPORT_OPERATOR=true SUPPORT_WHERE=false SUPPORT_PAGINATION=false",
"build:light": "node task/build RELEASE=light DEBUG=false PROFILER=false POLYFILL=true SUPPORT_WORKER=false SUPPORT_ENCODER=false SUPPORT_LANG=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_PRESET=false SUPPORT_SUGGESTION=false SUPPORT_SERIALIZE=false SUPPORT_INFO=false SUPPORT_DOCUMENT=false SUPPORT_OPERATOR=false SUPPORT_WHERE=false SUPPORT_PAGINATION=false",
"build:custom": "node task/build RELEASE=custom DEBUG=false PROFILER=false POLYFILL=false SUPPORT_WORKER=false SUPPORT_ENCODER=false SUPPORT_LANG=false SUPPORT_CACHE=false SUPPORT_ASYNC=false SUPPORT_PRESET=false SUPPORT_SUGGESTION=false SUPPORT_SERIALIZE=false SUPPORT_INFO=false SUPPORT_DOCUMENT=false SUPPORT_OPERATOR=false SUPPORT_WHERE=false SUPPORT_PAGINATION=false",
"build:es5": "node task/build RELEASE=es5 DEBUG=true PROFILER=false POLYFILL=true SUPPORT_WORKER=true SUPPORT_ENCODER=true SUPPORT_LANG=false SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_PRESET=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_INFO=true SUPPORT_DOCUMENT=true SUPPORT_OPERATOR=true SUPPORT_WHERE=true SUPPORT_PAGINATION=true LANGUAGE_OUT=ECMASCRIPT5_STRICT",
"build:node": "node task/build RELEASE=node DEBUG=false PROFILER=false POLYFILL=false SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_LANG=false SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_PRESET=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_INFO=true SUPPORT_DOCUMENT=true SUPPORT_OPERATOR=true SUPPORT_WHERE=true SUPPORT_PAGINATION=true",
"build:pre": "node task/build RELEASE=pre DEBUG=false PROFILER=false POLYFILL=true SUPPORT_WORKER=false SUPPORT_ENCODER=true SUPPORT_LANG=true SUPPORT_CACHE=true SUPPORT_ASYNC=true SUPPORT_PRESET=true SUPPORT_SUGGESTION=true SUPPORT_SERIALIZE=true SUPPORT_INFO=true SUPPORT_DOCUMENT=true SUPPORT_OPERATOR=true SUPPORT_WHERE=true SUPPORT_PAGINATION=true FORMATTING=PRETTY_PRINT",
"build:lang": "node task/build RELEASE=lang POLYFILL=false",
"build:module": "babel src -d dist/module && exit 0",
"build:all": "npm run build && npm run build:light && npm run build:compact && npm run build:es5 && npm run build:node && npm run build:pre && npm run build:debug && npm run build:lang && npm run build:module",
"test": "npm run build:pre && cd test && npm install && npm run test",
"update": "npm install google-closure-compiler@nightly"
},
"files": [
"flexsearch.js",
"dist/**",
"src/**",
"test/",
"index.d.ts",
"compile.js",
"README.md",
"CHANGELOG.md",
"LICENSE"
],
"readme": "README.md",
"dependencies": {},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-conditional-compile": "0.0.5",
"babel-plugin-minify-constant-folding": "^0.5.0",
"babel-plugin-minify-dead-code-elimination": "^0.5.1",
"babel-plugin-minify-flip-comparisons": "^0.4.3",
"babel-plugin-minify-guarded-expressions": "^0.4.4",
"babel-plugin-minify-infinity": "^0.4.3",
"babel-plugin-minify-mangle-names": "^0.5.0",
"babel-plugin-minify-replace": "^0.5.0",
"babel-plugin-minify-simplify": "^0.5.1",
"babel-plugin-minify-type-constructors": "^0.4.3",
"babel-plugin-transform-member-expression-literals": "^6.9.4",
"babel-plugin-transform-merge-sibling-variables": "^6.9.4",
"babel-plugin-transform-minify-booleans": "^6.9.4",
"babel-plugin-transform-property-literals": "^6.9.4",
"babel-plugin-transform-simplify-comparison-operators": "^6.9.4",
"babel-plugin-transform-undefined-to-void": "^6.9.4",
"google-closure-compiler": "^20191027.0.0"
}
}