forked from cdaringe/postgraphile-upsert
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
99 lines (99 loc) · 2.26 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "postgraphile-upsert-plugin",
"description": "add postgres upsert mutations to postgraphile",
"version": "0.0.0-semantically-released",
"main": "build/postgraphile-upsert.js",
"files": [
"build/*.js",
"build/*.ts"
],
"engines": {
"node": ">=8"
},
"contributors": [
"nmurray <[email protected]>"
],
"author": "cdaringe <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "17.1.2",
"@commitlint/config-conventional": "17.1.0",
"@types/bluebird": "3.5.36",
"@types/dockerode": "3.3.9",
"@types/nanographql": "2.0.1",
"@types/node": "16.11.56",
"@types/node-fetch": "2.6.1",
"@types/pg": "8.6.5",
"@types/wait-on": "5.3.1",
"@typescript-eslint/eslint-plugin": "5.35.1",
"@typescript-eslint/parser": "5.35.1",
"ava": "4.3.3",
"bluebird": "3.7.2",
"c8": "7.12.0",
"dockerode": "3.3.4",
"eslint": "8.23.0",
"execa": "5.1.1",
"freeport": "1.0.5",
"graphile-build": "4.12.2",
"graphql": "15.8.0",
"husky": "8.0.1",
"json-decycle": "2.0.1",
"nanographql": "2.0.0",
"node-fetch": "2.6.7",
"p-retry": "4.6.2",
"pg": "8.8.0",
"postgraphile": "4.12.9",
"postgraphile-core": "4.12.2",
"prettier": "2.6.2",
"prettier-plugin-organize-imports": "3.1.0",
"semantic-release": "19.0.5",
"standard": "17.0.0",
"ts-node": "10.9.1",
"typescript": "4.8.2"
},
"scripts": {
"build": "tsc",
"format": "prettier --write .",
"test": "c8 -r=lcov -r=text-summary ava --timeout=2m",
"semantic-release": "semantic-release",
"lint": "prettier --check . && eslint '**/*.{ts,js}'",
"prepare": "husky install"
},
"ava": {
"extensions": [
"ts"
],
"require": [
"ts-node/register"
],
"files": [
"src/__tests__/**/*.test.ts"
]
},
"repository": {
"type": "git",
"url": "https://github.com/cdaringe/postgraphile-upsert.git"
},
"keywords": [
"postgres",
"pg",
"postgraphile",
"upsert",
"plugin",
"mutation"
],
"standard": {
"parser": "@typescript-eslint/parser",
"standardPlugins": [
"typescript"
],
"ignore": [
"**/*.d.ts"
]
},
"release": {
"branches": [
"main"
]
}
}