-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
44
45
{
"name": "@cloudcycle/postgraphile-plugin-aws-appsync-scalars",
"version": "0.0.3",
"description": "Postgraphile plugin to convert Postgraphile-generated custom scalar names to those AWS AppSync accepts",
"main": "build/index.js",
"scripts": {
"clean": "npx rimraf ./build",
"build": "npx tsc",
"lint": "tslint -p tsconfig.json",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"postversion": "git push && git push --tags",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CloudCycle/postgraphile-plugin-aws-appsync-scalars.git"
},
"keywords": [
"Postgraphile",
"plugin",
"AWS",
"AppSync"
],
"author": "Isac Casapu",
"license": "MIT",
"bugs": {
"url": "https://github.com/CloudCycle/postgraphile-plugin-aws-appsync-scalars/issues"
},
"homepage": "https://github.com/CloudCycle/postgraphile-plugin-aws-appsync-scalars#readme",
"devDependencies": {
"postgraphile": "^4.12.11",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.7.4"
},
"dependencies": {
"graphile-utils": "^4.12.3"
},
"peerDependencies": {
"postgraphile": "^4.12.x"
}
}