UNPKG

postgraphile-upsert-plugin

Version:

add postgres upsert mutations to postgraphile

100 lines (99 loc) 2.26 kB
{ "name": "postgraphile-upsert-plugin", "description": "add postgres upsert mutations to postgraphile", "version": "3.3.0", "main": "build/postgraphile-upsert.js", "files": [ "build/*.js", "build/*.ts" ], "engines": { "node": ">=8" }, "contributors": [ "nmurray <nate@fullstack.io>" ], "author": "cdaringe <cdaringe@gmail.com>", "license": "MIT", "devDependencies": { "@commitlint/cli": "17.6.3", "@commitlint/config-conventional": "17.6.3", "@types/bluebird": "3.5.38", "@types/dockerode": "3.3.18", "@types/nanographql": "2.0.1", "@types/node": "18.16.16", "@types/node-fetch": "2.6.4", "@types/pg": "8.10.1", "@types/wait-on": "5.3.1", "@typescript-eslint/eslint-plugin": "5.59.7", "@typescript-eslint/parser": "5.59.7", "ava": "5.3.0", "bluebird": "3.7.2", "c8": "7.13.0", "dockerode": "3.3.5", "eslint": "8.41.0", "execa": "5.1.1", "graphql": "16.6.0", "husky": "8.0.3", "json-decycle": "3.0.0", "node-fetch": "2.6.11", "p-retry": "4.6.2", "pg": "8.11.0", "postgraphile": "4.13.0", "postgraphile-core": "4.13.0", "prettier": "2.8.8", "prettier-plugin-organize-imports": "3.2.2", "semantic-release": "21.0.2", "standard": "17.0.0", "ts-node": "10.9.1", "typescript": "5.0.4" }, "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" } }