UNPKG

sql-to-graphql

Version:

Generate a GraphQL API based on your SQL database structure

66 lines (65 loc) 1.43 kB
{ "name": "sql-to-graphql", "version": "2.0.9", "description": "Generate a GraphQL API based on your SQL database structure", "main": "index.js", "scripts": { "test": "eslint ." }, "bin": { "sql2graphql": "./cli.js" }, "repository": { "type": "git", "url": "git+ssh://git@github.com/vaffel/sql-to-graphql.git" }, "keywords": [ "generator", "graphql", "schemas", "sql", "type" ], "preferGlobal": true, "author": "Espen Hovlandsdal <espen@vaffel.ninja>", "contributors": [ { "name": "Kristoffer Brabrand", "email": "kristoffer@vaffel.ninja" } ], "license": "MIT", "bugs": { "url": "https://github.com/vaffel/sql-to-graphql/issues" }, "homepage": "https://github.com/vaffel/sql-to-graphql#readme", "dependencies": { "ast-types": "^0.8.4", "async": "^1.3.0", "copy-dir": "0.0.8", "graphql": "^0.2.5", "inquirer": "^0.9.0", "knex": "^0.8.6", "lodash": "^3.10.0", "mkdirp": "^0.5.1", "mysql": "^2.8.0", "pg": "^4.4.1", "pluralize": "^1.1.2", "recast": "^0.10.26", "sqlite3": "^3.1.0", "yargs": "^3.15.0" }, "devDependencies": { "eslint": "^1.2.1", "eslint-config-vaffel": "^2.0.0" }, "eslintConfig": { "extends": "vaffel", "rules": { "new-cap": 0, "no-console": 0, "no-process-exit": 0, "no-underscore-dangle": 0 } } }