lucene-filter.js

Data filter for lucene queries
git clone git://git.finwo.net/lib/lucene-filter.js
Log | Files | Refs | README | LICENSE

package.json (1314B)


      1 {
      2   "name": "lucene-filter",
      3   "version": "1.4.0",
      4   "description": "Data filter for lucene queries",
      5   "main": "src/index.js",
      6   "browser": "dist/index.js",
      7   "scripts": {
      8     "test": "tape $(aaargh config.test.json)",
      9     "build": "esbuild $(aaargh config.build.json)",
     10     "prepublishOnly": "npm run build && npm test",
     11     "postpublish": "PACKAGE_VERSION=$(node -p \"require('./package.json').version\") PACKAGE_NAME=$(node -p \"require('./package.json').name\") && npm deprecate \"${PACKAGE_NAME}@<${PACKAGE_VERSION}\" \"Rolling release, please update to ${PACKAGE_VERSION}\"",
     12     "check": "eslint src",
     13     "format": "npm run check -- --fix"
     14   },
     15   "repository": {
     16     "type": "git",
     17     "url": "git+https://github.com/finwo/lucene-filter.git"
     18   },
     19   "author": "Robin Bron <robin@finwo.nl>",
     20   "license": "MIT",
     21   "bugs": {
     22     "url": "https://github.com/finwo/lucene-filter/issues"
     23   },
     24   "files": [
     25     "dist/",
     26     "src/",
     27     "README.md",
     28     "LICENSE"
     29   ],
     30   "funding": {
     31     "url": "https://github.com/sponsors/finwo"
     32   },
     33   "homepage": "https://github.com/finwo/lucene-filter#readme",
     34   "devDependencies": {
     35     "aaargh": "^1.0.3",
     36     "esbuild": "^0.14.39",
     37     "eslint": "^8.15.0",
     38     "tape": "^5.5.3"
     39   },
     40   "keywords": [
     41     "lucene",
     42     "filter",
     43     "query",
     44     "search",
     45     "engine"
     46   ]
     47 }