-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
43 lines (43 loc) · 1.21 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
{
"name": "@graphile-contrib/pg-simplify-inflector",
"version": "7.0.0-alpha.1",
"description": "Simplifies the graphile-build-pg inflector to trim the `ByFooIdAndBarId` from relations",
"main": "index.js",
"scripts": {
"prepack": "tsc && prettier --write index.js",
"postgraphile": "postgraphile --append-plugins \"$(pwd)/index.js\"",
"lint:fix": "yarn prettier --write",
"prettier": "prettier --ignore-path ./.eslintignore '**/*.{js,jsx,ts,tsx,graphql,md,json,yml}'",
"test": "node test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/graphile-contrib/pg-simplify-inflector.git"
},
"keywords": [
"graphile",
"postgraphile",
"plugin",
"simple",
"simplify",
"inflection",
"inflector",
"pg"
],
"author": "Benjie Gillam <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/graphile-contrib/pg-simplify-inflector/issues"
},
"homepage": "https://github.com/graphile-contrib/pg-simplify-inflector#readme",
"files": [
"index.js",
"index.d.ts"
],
"devDependencies": {
"@types/node": "^15.12.5",
"postgraphile": "^4.12.3",
"prettier": "^2.3.2",
"typescript": "^4.3.5"
}
}