UNPKG

graphql2rest

Version:

GraphQL to REST converter: automatically generate a RESTful API from your existing GraphQL API

82 lines (81 loc) 2.48 kB
{ "name": "graphql2rest", "version": "1.0.1", "author": "Roy Mor <roy.mor.email@gmail.com>", "contributors": [ "Ray Luxembourg", "Yotam Roth", "Sergei Magera" ], "license": "MIT", "description": "GraphQL to REST converter: automatically generate a RESTful API from your existing GraphQL API", "keywords": [ "graphql", "rest", "api", "graphql2rest", "restful", "graphql-to-rest" ], "repository": { "type": "git", "url": "https://github.com/sisense/graphql2rest.git" }, "main": "./src/index.js", "private": false, "scripts": { "lint": "eslint . --ext .js", "test": "./node_modules/mocha/bin/_mocha --recursive './test/**/*.test.js'", "test:coverage": "nyc npm run test" }, "dependencies": { "del": "^5.1.0", "dot-object": "^2.1.2", "express": "~4.18.2", "graphql": "^16.6.0", "graphql-tag": "^2.12.6", "http-status-codes": "^1.3.0", "jmespath": "^0.15.0", "lodash-pickdeep": "^1.0.2", "lodash.clonedeep": "^4.5.0", "lodash.omit": "^4.5.0", "mingo": "^2.2.10", "object-path": "^0.11.4", "url-join": "^4.0.0", "winston": "^3.1.0" }, "devDependencies": { "@babel/cli": "^7.8.4", "@babel/core": "^7.8.4", "@babel/plugin-proposal-class-properties": "^7.8.3", "@babel/plugin-proposal-decorators": "^7.8.3", "@babel/plugin-proposal-do-expressions": "^7.8.3", "@babel/plugin-proposal-export-default-from": "^7.8.3", "@babel/plugin-proposal-export-namespace-from": "^7.8.3", "@babel/plugin-proposal-function-bind": "^7.8.3", "@babel/plugin-proposal-function-sent": "^7.8.3", "@babel/plugin-proposal-json-strings": "^7.8.3", "@babel/plugin-proposal-logical-assignment-operators": "^7.8.3", "@babel/plugin-proposal-nullish-coalescing-operator": "^7.8.3", "@babel/plugin-proposal-numeric-separator": "^7.8.3", "@babel/plugin-proposal-optional-chaining": "^7.8.3", "@babel/plugin-proposal-pipeline-operator": "^7.8.3", "@babel/plugin-proposal-throw-expressions": "^7.8.3", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-import-meta": "^7.8.3", "@babel/plugin-transform-runtime": "^7.8.3", "@babel/polyfill": "^7.8.3", "@babel/preset-env": "^7.8.4", "@babel/register": "^7.8.3", "babel-eslint": "^10.0.1", "babel-loader": "^8.0.5", "chai": "^3.5.0", "chai-fs": "^2.0.0", "eslint": "^8.36.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.27.5", "mocha": "10.2.0", "nyc": "^15.1.0", "run-middleware": "^0.9.10" } }