This repository has been archived by the owner on Nov 26, 2024. It is now read-only.
forked from cdaringe/postgraphile-upsert
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
79 lines (79 loc) · 2.04 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
{
"name": "@alechartung/postgraphile-upsert-plugin",
"description": "add postgres upsert mutations to postgraphile",
"version": "1.0.8",
"main": "build/postgraphile-upsert.js",
"files": ["build/*.js", "build/*.ts"],
"engines": {
"node": ">=8"
},
"author": "Alec Hartung <[email protected]>",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "8.3.5",
"@commitlint/config-conventional": "8.3.4",
"@types/bluebird": "3.5.29",
"@types/dockerode": "2.5.22",
"@types/nanographql": "2.0.1",
"@types/pg": "7.11.2",
"@typescript-eslint/parser": "1.13.0",
"ava": "1.3.1",
"bluebird": "3.7.2",
"commitlint-circle": "1.0.0",
"dockerode": "3.1.0",
"execa": "4.0.0",
"freeport": "1.0.5",
"husky": "4.2.3",
"lint-staged": "10.0.7",
"nanographql": "2.0.0",
"node-fetch": "2.6.0",
"pg": "7.12.1",
"postgraphile": "4.4.4",
"postgraphile-core": "4.5.3",
"prettier-standard": "13.0.6",
"semantic-release": "17.0.3",
"standard": "12.0.1",
"typescript": "3.7.5"
},
"scripts": {
"build": "tsc",
"format": "prettier-standard '{src,test,scripts}/**/*.{ts,tsx}'",
"test": "ava build/**/*.test.js",
"semantic-release": "semantic-release",
"lint": "standard '{src,test,scripts}/**/*.{ts,tsx}' --fix"
},
"ava": {
"babel": false,
"compileEnhancements": false
},
"repository": {
"type": "git",
"url": "git+https://github.com/alechartung/postgraphile-upsert.git"
},
"keywords": [
"postgres",
"pg",
"postgraphile",
"upsert",
"plugin",
"mutation"
],
"lint-staged": {
"linters": {
"{src,test,scripts}/**/*.{ts,tsx}": [
"yarn format",
"yarn lint",
"git add"
]
}
},
"standard": {
"parser": "@typescript-eslint/parser",
"standardPlugins": ["typescript"],
"ignore": ["**/*.d.ts"]
},
"bugs": {
"url": "https://github.com/alechartung/postgraphile-upsert/issues"
},
"homepage": "https://github.com/alechartung/postgraphile-upsert#readme"
}