-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
104 lines (104 loc) · 2.33 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "postgraphile-plugin-fulltext-filter",
"version": "1.0.0-beta.7",
"description": "Full text searching on tsvector fields for use with postgraphile-plugin-connection-filter",
"main": "index.js",
"repository": {
"url": "git+https://github.com/mlipscombe/postgraphile-plugin-fulltext-filter.git",
"type": "git"
},
"author": "Mark Lipscombe",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlipscombe/postgraphile-plugin-fulltext-filter.git"
},
"scripts": {
"test": "scripts/test jest -i",
"lint": "eslint index.js src/**/*.js"
},
"dependencies": {
"graphile-build-pg": "^4.2.0",
"pg-tsquery": "^6.4.2",
"postgraphile-plugin-connection-filter": "^1.0.0-beta.28"
},
"peerDependencies": {
"postgraphile-core": "^4.2.0",
"postgraphile-plugin-connection-filter": "^1.0.0-beta.28"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.14.0",
"graphql": "^14.0.2",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"pg": ">=6.1.0 <8",
"postgraphile-core": "^4.2.0"
},
"jest": {
"testRegex": "__tests__/.*\\.test\\.js$",
"collectCoverageFrom": [
"src/*.js",
"index.js"
]
},
"files": [
"src"
],
"eslintConfig": {
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"extends": [
"airbnb-base"
],
"env": {
"jest": true
},
"globals": {
"expect": false
},
"rules": {
"import/no-unresolved": 0,
"import/no-extraneous-dependencies": 0,
"import/extensions": 0,
"import/prefer-default-export": 0,
"max-len": 0,
"symbol-description": 0,
"no-nested-ternary": 0,
"no-alert": 0,
"no-console": 0,
"no-plusplus": 0,
"no-restricted-globals": 0,
"no-underscore-dangle": [
"error",
{
"allow": [
"_fields",
"__fts_ranks"
]
}
],
"no-param-reassign": [
"error",
{
"props": false
}
],
"no-return-assign": [
"error",
"except-parens"
],
"class-methods-use-this": 0,
"prefer-destructuring": [
"error",
{
"object": true,
"array": false
}
]
}
}
}