@stepzen/graphiql-proxy 0.30.0-beta.7 → 0.30.0-beta.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/LICENSE CHANGED
@@ -1,6 +1,6 @@
1
1
  MIT License
2
2
 
3
- Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
3
+ Copyright (c) StepZen Inc., an IBM Company 2020,2023.
4
4
 
5
5
  Permission is hereby granted, free of charge, to any person obtaining a copy
6
6
  of this software and associated documentation files (the "Software"), to deal
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@stepzen/graphiql-proxy",
3
- "version": "0.30.0-beta.7",
3
+ "version": "0.30.0-beta.8",
4
4
  "author": "Darren Waddell <darren@stepzen.com>",
5
5
  "license": "MIT",
6
6
  "homepage": "https://stepzen.com",
@@ -23,7 +23,7 @@
23
23
  "posttest": "prettier . --check"
24
24
  },
25
25
  "dependencies": {
26
- "@stepzen/fetch": "0.30.0-beta.7",
26
+ "@stepzen/fetch": "0.30.0-beta.8",
27
27
  "chalk": "^4.1.2",
28
28
  "cors": "^2.8.5",
29
29
  "cross-spawn": "^7.0.3",
@@ -41,7 +41,7 @@
41
41
  "@types/express": "^4.17.9",
42
42
  "@types/glob": "^7.2.0",
43
43
  "@types/license-checker": "^25.0.1",
44
- "@types/mocha": "^5.2.7",
44
+ "@types/mocha": "^10.0.1",
45
45
  "@types/node": "^14.18.36",
46
46
  "@types/sinon-chai": "3.2.8",
47
47
  "chai": "^4.2.0",
@@ -49,13 +49,13 @@
49
49
  "dotenv": "^16.0.3",
50
50
  "fancy-test": "^1.4.10",
51
51
  "license-checker": "^25.0.1",
52
- "mocha": "^5.2.0",
52
+ "mocha": "^10.2.0",
53
53
  "nock": "^13.0.4",
54
- "nodemon": "^2.0.7",
54
+ "nodemon": "^2.0.22",
55
55
  "nyc": "^14.1.1",
56
56
  "sinon": "13.0.1",
57
57
  "sinon-chai": "3.7.0",
58
58
  "ts-node": "^10.8.2"
59
59
  },
60
- "gitHead": "0a15b48bbb17fcf935a03b6e8aefd4f52e8f987f"
60
+ "gitHead": "3c07e8c1948ab2179aa8464efe5c1076e622247d"
61
61
  }
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
1
+ // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
2
2
 
3
3
  const debugging = async (req, res) => {
4
4
  const {debugging} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
1
+ // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
2
2
 
3
3
  const details = async (req, res) => {
4
4
  const {zenservUrl, predicates, workspace} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
1
+ // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
2
2
 
3
3
  const ping = async (req, res) => {
4
4
  res.json({
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
1
+ // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
2
2
 
3
3
  const predicates = async (req, res) => {
4
4
  const {predicates} = req.stepzen
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
1
+ // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
2
2
 
3
3
  const debug = require('debug')
4
4
  const fetch = require('@stepzen/fetch').default
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
1
+ // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
2
2
 
3
3
  const fs = require('fs')
4
4
  const prettier = require('prettier')
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
1
+ // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
2
2
 
3
3
  const cors = require('cors')
4
4
  const debug = require('debug')
@@ -1,4 +1,4 @@
1
- // Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
1
+ // Copyright (c) StepZen Inc., an IBM Company 2020,2023.
2
2
  // Original code from https://github.com/facebook/create-react-app/blob/0f6fc2bc71d78f0dcae67f3f08ce98a42fc0a57c/packages/react-dev-utils/openChrome.applescript
3
3
 
4
4
  const chalk = require('chalk')
@@ -1,5 +1,5 @@
1
1
  (*
2
- Copyright (c) 2020,2021,2022,2023, StepZen, Inc.
2
+ Copyright (c) StepZen Inc., an IBM Company 2020,2023.
3
3
 
4
4
  Original code from https://github.com/facebook/create-react-app/blob/0f6fc2bc71d78f0dcae67f3f08ce98a42fc0a57c/packages/react-dev-utils/openChrome.applescript
5
5
  *)