-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
99 lines (99 loc) · 2.22 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": "19.3.0",
"@commitlint/config-conventional": "19.2.2",
"@types/bluebird": "3.5.42",
"@types/dockerode": "3.3.31",
"@types/nanographql": "2.0.3",
"@types/node": "20.14.14",
"@types/node-fetch": "2.6.11",
"@types/pg": "8.11.6",
"@types/wait-on": "5.3.4",
"@typescript-eslint/eslint-plugin": "8.0.1",
"@typescript-eslint/parser": "8.0.1",
"ava": "5.3.1",
"bluebird": "3.7.2",
"c8": "10.1.2",
"dockerode": "4.0.2",
"eslint": "9.8.0",
"execa": "5.1.1",
"graphql": "16.9.0",
"husky": "9.1.4",
"json-decycle": "3.0.0",
"node-fetch": "2.7.0",
"p-retry": "4.6.2",
"pg": "8.12.0",
"postgraphile": "4.13.0",
"postgraphile-core": "4.13.0",
"prettier": "3.3.3",
"prettier-plugin-organize-imports": "4.0.0",
"semantic-release": "21.1.2",
"standard": "17.0.0",
"ts-node": "10.9.2",
"typescript": "5.4.5"
},
"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"
]
},
"dependencies": {
"graphile-build": "4"
}
}