-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 1.6 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
{
"name": "postgraphile-plugin-zombodb",
"version": "1.0.0-beta.5",
"description": "Full text searching using ZomboDB indexes",
"main": "index.js",
"repository": {
"url": "git+https://github.com/mlipscombe/postgraphile-plugin-zombodb.git",
"type": "git"
},
"author": "Mark Lipscombe",
"license": "MIT",
"bugs": {
"url": "https://github.com/mlipscombe/postgraphile-plugin-zombodb.git"
},
"scripts": {
"test": "scripts/test jest -i",
"lint": "eslint index.js src/**/*.js"
},
"peerDependencies": {
"graphile-build-pg": "^4.4.0-beta.10"
},
"devDependencies": {
"eslint": "^5.10.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-config-prettier": "^4.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-prettier": "^3.0.1",
"graphile-build-pg": "^4.4.0-beta.10",
"graphql": "^14.0.2",
"jest": "^23.6.0",
"jest-junit": "^5.2.0",
"pg": ">=6.1.0 <8",
"postgraphile-core": "^4.4.0-beta.10",
"prettier": "^1.16.4"
},
"resolutions": {
"graphql": "^14.0.2"
},
"jest": {
"testRegex": "__tests__/.*\\.test\\.js$",
"collectCoverageFrom": [
"src/*.js",
"index.js"
]
},
"files": [
"src"
],
"prettier": {
"trailingComma": "all",
"semi": true,
"singleQuote": true,
"arrowParens": "always"
},
"eslintConfig": {
"extends": [
"airbnb-base",
"prettier"
],
"plugins": [
"prettier"
],
"env": {
"jest": true
},
"globals": {
"expect": false
},
"rules": {
"prettier/prettier": "error",
"no-sequences": 0
}
}
}