forked from caub/pg-tsquery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 834 Bytes
/
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
{
"name": "pg-tsquery",
"version": "8.4.1",
"description": "Parse user input into valid text search queries",
"engines": {
"node": ">=10"
},
"scripts": {
"test": "eslint . && tsc --target es2020 --noEmit --alwaysStrict --allowJs --checkJs index.js && nyc node test"
},
"repository": "github:caub/pg-tsquery",
"keywords": [
"pg",
"postgres",
"PostgreSQL",
"tsquery",
"text",
"search",
"parser"
],
"author": "caub",
"license": "ISC",
"bugs": {
"url": "https://github.com/caub/pg-tsquery/issues"
},
"homepage": "https://github.com/caub/pg-tsquery#readme",
"devDependencies": {
"@types/node": "^14.14.34",
"babel-eslint": "^10.1.0",
"codecov": "^3.8.1",
"eslint": "^7.22.0",
"nyc": "^15.1.0",
"pg": "^8.5.1",
"typescript": "^4.2.3"
}
}