forked from jashmenn/postgraphile-upsert-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.8 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": "@fullstackio/postgraphile-upsert-plugin",
"description": "add postgres upsert mutations to postgraphile",
"version": "1.4.0",
"main": "build/postgraphile-upsert.js",
"files": [
"build/*.js",
"build/*.ts"
],
"engines": {
"node": ">=8"
},
"maintainer": "nmurray <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/bluebird": "^3.5.24",
"@types/dockerode": "^2.5.9",
"@types/execa": "^0.9.0",
"@types/nanographql": "^2.0.1",
"@types/pg": "^7.4.11",
"ava": "1.1.0",
"bluebird": "^3.5.3",
"dockerode": "^2.5.7",
"execa": "^1.0.0",
"freeport": "^1.0.5",
"husky": "^1.2.0",
"lint-staged": "^8.1.0",
"nanographql": "^2.0.0",
"node-fetch": "^2.3.0",
"pg": "^7.6.1",
"postgraphile": "^4.0.1",
"postgraphile-core": "4.2.0",
"prettier-standard": "^9.1.1",
"typescript": "^3.1.6",
"semantic-release": "^15.12.1"
},
"scripts": {
"build": "tsc",
"format": "prettier-standard '{src,test,scripts}/**/*.{js,jsx,ts,tsx}'",
"test": "npm run build run-tests",
"run-tests": "ava build/**/*.test.js",
"semantic-release": "semantic-release"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"linters": {
"{src,test,scripts}/**/*.{js,jsx,ts,tsx}": [
"yarn format",
"git add"
]
}
},
"ava": {
"babel": false,
"compileEnhancements": false
},
"repository": {
"type": "git",
"url": "https://github.com/jashmenn/postgraphile-upsert-plugin"
},
"publishConfig": {
"access": "public"
},
"release": {
"repositoryUrl": "[email protected]:jashmenn/postgraphile-upsert-plugin.git"
},
"keywords": [
"postgres",
"pg",
"postgraphile",
"upsert",
"plugin",
"mutation"
]
}