-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.14 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
{
"name": "@graphile-contrib/pg-order-by-related",
"version": "1.0.0",
"description": "Order by related columns on PostGraphile connections",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"format": "prettier --ignore-path ./.eslintignore",
"format:all": "yarn format '**/*.{json,md,html,js,jsx,ts,tsx}'",
"format:fix": "yarn format:all --write",
"format:check": "yarn format:all --list-different",
"lint": "eslint . --ext .js,.jsx",
"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": "8.28.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-jest": "27.1.6",
"eslint-plugin-prettier": "4.2.1",
"graphql": "15.8.0",
"jest": "29.3.1",
"pg": "8.8.0",
"postgraphile-core": "4.12.3",
"prettier": "2.8.0"
},
"jest": {
"testRegex": "__tests__/.*\\.test\\.js$"
},
"files": [
"index.js",
"index.d.ts"
]
}