-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
31 lines (31 loc) · 1009 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
{
"name": "postgraphile-callback-plugin",
"version": "0.1.4",
"description": "You can pass callback functions to this plugin, which'll then be called when specific postgraphile hooks are triggered. Right now, it only works for postgraphile:http:handler and postgraphile:http:end. The ability to pass such callbacks are useful for logging and many other things.",
"main": "lib/index.js",
"scripts": {
"build": "rm -vrf lib && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RuneAI/postgraphile-callback-plugin.git"
},
"author": "Rune AI Inc.",
"license": "UNLICENSED",
"bugs": {
"url": "https://github.com/RuneAI/postgraphile-callback-plugin/issues"
},
"homepage": "https://github.com/RuneAI/postgraphile-callback-plugin#readme",
"devDependencies": {
"prettier": "^2.2.1",
"typescript": "^3.1.6"
},
"dependencies": {
"graphile-utils": "^4.2.1",
"postgraphile": "^4.2.0"
},
"files": [
"package.json",
"lib"
]
}