forked from graphile-contrib/pg-order-by-related
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 965 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
37
38
39
{
"name": "@graphile-contrib/pg-order-by-related",
"version": "1.0.0-beta.3",
"description": "Order by related columns on PostGraphile connections",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
"test": "scripts/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile-contrib/pg-order-by-related.git"
},
"author": "Matt Bretl",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile-contrib/pg-order-by-related/issues"
},
"devDependencies": {
"eslint": "^5.12.0",
"eslint-config-prettier": "^3.3.0",
"eslint-plugin-jest": "^20.0.3",
"eslint-plugin-prettier": "^3.0.1",
"graphql": ">=0.9 <0.14 || ^14.0.2",
"jest": "23.5.0",
"pg": ">=6.1.0 <8",
"postgraphile-core": "4.1.0",
"prettier": "1.15.3"
},
"jest": {
"testRegex": "__tests__/.*\\.test\\.js$"
},
"files": [
"index.js"
],
"engines": {
"node": ">=8.6"
}
}