UNPKG

fetch-graphql-schema

Version:

fetch GraphQL schema via introspection query

67 lines (66 loc) 1.45 kB
{ "name": "fetch-graphql-schema", "version": "0.2.1", "description": "fetch GraphQL schema via introspection query", "main": "lib/index.js", "license": "MIT", "repository": "Yoctol/fetch-graphql-schema", "author": { "name": "C.T. Lin", "email": "chentsulin@gmail.com", "url": "github.com/chentsulin" }, "engines": { "node": ">=0.12.0" }, "bin": "bin/fetch-graphql-schema.js", "files": [ "bin/", "lib/", "src/" ], "keywords": [ "graphql", "schema", "json", "server", "fetch" ], "dependencies": { "chalk": "^1.1.3", "graphql": "^0.8.0", "meow": "^3.7.0", "mkdirp": "^0.5.1", "node-fetch": "^1.6.3" }, "devDependencies": { "babel-cli": "^6.18.0", "babel-jest": "^17.0.0", "babel-preset-latest": "^6.16.0", "eslint": "^3.5.0", "eslint-config-airbnb-base": "^10.0.1", "eslint-plugin-import": "^2.2.0", "fetch-mock": "^5.5.0", "jest": "^17.0.0", "rimraf": "^2.5.4" }, "scripts": { "build": "npm run clean && babel src -d lib --ignore __tests__", "clean": "rimraf lib", "test": "jest", "test:cov": "jest --coverage", "lint": "eslint .", "preversion": "npm test" }, "devEngines": { "node": "4.x || 5.x || 6.x || 7.x", "npm": "2.x || 3.x || 4.x" }, "jest": { "verbose": true, "collectCoverageFrom": [ "src/**/*.js" ], "testEnvironment": "node" } }