UNPKG

liqe

Version:

Lightweight and performant Lucene-like parser, serializer and search engine.

73 lines (72 loc) 2 kB
{ "author": { "email": "gajus@gajus.com", "name": "Gajus Kuizinas", "url": "http://gajus.com" }, "ava": { "extensions": [ "ts" ], "files": [ "test/liqe/**/*" ], "require": [ "ts-node/register/transpile-only" ] }, "dependencies": { "nearley": "^2.20.1", "ts-error": "^1.0.6" }, "description": "Lightweight and performant Lucene-like parser, serializer and search engine.", "devDependencies": { "@istanbuljs/nyc-config-typescript": "^1.0.1", "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/github": "^12.0.6", "@semantic-release/npm": "^13.1.4", "@types/node": "^16.10.9", "@types/semver-compare": "^1.0.1", "@types/sinon": "^10.0.4", "ava": "4.3.3", "benny": "^3.7.1", "coveralls": "^3.1.1", "del-cli": "^4.0.1", "eslint": "^9.17.0", "eslint-config-canonical": "^44.3.36", "faker": "^5.5.3", "husky": "^7.0.4", "npm-watch": "^0.11.0", "nyc": "^15.1.0", "semantic-release": "^25.0.3", "ts-node": "^10.4.0", "typescript": "^5.7.2" }, "engines": { "node": ">=12.0" }, "keywords": [ "lucene" ], "license": "BSD-3-Clause", "main": "./dist/src/Liqe.js", "name": "liqe", "repository": { "type": "git", "url": "git@github.com:gajus/liqe.git" }, "scripts": { "benchmark": "ts-node --transpile-only test/benchmark.ts", "build": "del-cli ./dist && tsc", "compile-parser": "nearleyc src/grammar.ne --out ./src/grammar.ts && sed -i '' 's/loc?: number/loc: number/g' src/grammar.ts && sed -i '' 's/@ts-expect-error//g' src/grammar.ts && sed -i '' 's/@ts-ignore//g' src/grammar.ts && eslint --fix src/grammar.ts", "dev": "tsc --watch", "lint": "eslint ./src ./test && tsc --noEmit", "test": "NODE_ENV=test ava --serial --verbose", "watch": "npm-watch" }, "typings": "./dist/src/Liqe.d.ts", "version": "3.8.7", "watch": { "compile-parser": "src/grammar.ne" } }