-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
72 lines (72 loc) · 1.82 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
{
"author": {
"email": "[email protected]",
"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": "^9.0.2",
"@semantic-release/github": "^8.0.7",
"@semantic-release/npm": "^9.0.2",
"@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": "^7.32.0",
"eslint-config-canonical": "^28.0.0",
"faker": "^5.5.3",
"husky": "^7.0.4",
"npm-watch": "^0.11.0",
"nyc": "^15.1.0",
"semantic-release": "^20.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"engines": {
"node": ">=12.0"
},
"keywords": [
"lucene"
],
"license": "BSD-3-Clause",
"main": "./dist/src/Liqe.js",
"name": "liqe",
"repository": {
"type": "git",
"url": "[email protected]:gajus/liqe.git"
},
"watch": {
"compile-parser": "src/grammar.ne"
},
"scripts": {
"watch": "npm-watch",
"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",
"dev": "tsc --watch",
"lint": "eslint ./src ./test && tsc --noEmit",
"test": "NODE_ENV=test ava --serial --verbose"
},
"typings": "./dist/src/Liqe.d.ts",
"version": "1.0.0"
}