-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.69 KB
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
{
"name": "@brooklyn-labs/postgraphile-plugin-remove-foreign-key-fields",
"version": "1.3.2",
"description": "PostGraphile plugin that removes all foreign key fields from the GraphQL schema while still allowing foreign relationships to be created. Primary key fields are not removed from the GraphQL schema.",
"author": "Brooklyn Labs",
"license": "MIT",
"scripts": {
"lint": "eslint src --ext .ts",
"build": "tsc --declaration"
},
"repository": {
"type": "git",
"url": "https://github.com/brooklyn-labs/postgraphile-plugin-remove-foreign-key-fields"
},
"bugs": {
"url": "https://github.com/brooklyn-labs/postgraphile-plugin-remove-foreign-key-fields/issues"
},
"homepage": "https://github.com/brooklyn-labs/postgraphile-plugin-remove-foreign-key-fields#readme",
"keywords": [
"graphile",
"postgraphile",
"plugin",
"foreign-key",
"remove",
"graphql",
"pg"
],
"dependencies": {
"lodash": "^4.17.20"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/lodash": "^4.14.165",
"@typescript-eslint/eslint-plugin": "^4.2.0",
"@typescript-eslint/parser": "^4.2.0",
"eslint": "^7.10.0",
"eslint-config-prettier": "^7.0.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "~24.1.3",
"eslint-plugin-jsdoc": "^30.5.2",
"graphile-build-pg": "^4.10.0",
"graphql": "^14.0.0",
"jest": "^26.6.3",
"jest-junit": "^12.0.0",
"pg": "^8.5.1",
"postgraphile": "^4.10.0",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"src",
"dist"
],
"engines": {
"node": ">=10"
}
}