UNPKG

graphql-resolvers

Version:
99 lines (98 loc) 2.48 kB
{ "name": "graphql-resolvers", "version": "0.4.2", "description": "Resolver composition library for GraphQL.", "keywords": [ "apollo", "composition", "functional", "graphql", "resolver" ], "homepage": "https://github.com/lucasconstantino/graphql-resolvers#readme", "bugs": { "url": "https://github.com/lucasconstantino/graphql-resolvers/issues" }, "repository": { "type": "git", "url": "git+https://github.com/lucasconstantino/graphql-resolvers.git" }, "license": "MIT", "author": "Lucas Constantino Silva <lucasconstantinosilva@gmail.com>", "main": "index.js", "scripts": { "codecov": "yarn coverage && codecov", "compile": "babel src -d lib", "lint": "eslint index.js src test", "prepublish": "yarn qa && yarn compile", "qa": "yarn test && yarn lint", "release": "yarn compile && standard-version", "test": "jest" }, "husky": { "hooks": { "pre-commit": "lint-staged", "pre-push": "yarn qa" } }, "lint-staged": { "*.js": [ "prettier-eslint --write", "git add" ], "package.json": [ "sort-package-json", "git add" ] }, "prettier": "@strv/prettier-config", "jest": { "collectCoverage": true, "collectCoverageFrom": [ "src/**/*.js" ], "coverageThreshold": { "global": { "branches": 90, "functions": 90, "lines": 90, "statements": 90 } }, "setupFilesAfterEnv": [ "jest-chain" ] }, "dependencies": { "@babel/runtime": "^7.8.4", "deep-equal": "^2.0.1", "object-path": "^0.11.4" }, "devDependencies": { "@babel/cli": "^7.0.0", "@babel/core": "^7.0.0", "@babel/plugin-transform-regenerator": "^7.4.5", "@babel/plugin-transform-runtime": "^7.4.4", "@babel/polyfill": "^7.4.4", "@babel/preset-env": "^7.4.5", "@babel/register": "^7.4.4", "@strv/eslint-config-node": "^2.1.2", "@strv/prettier-config": "^1.0.3", "babel-core": "^7.0.0-bridge.0", "babel-eslint": "^10.0.3", "babel-jest": "^25.1.0", "babel-preset-taller": "^0.1.1", "codecov": "^3.6.4", "eslint": "^6.8.0", "graphql": "^14.6.0", "graphql-tools": "^4.0.6", "husky": "^4.2.1", "jest": "^25.1.0", "jest-chain": "^1.1.2", "lint-staged": "^10.0.7", "prettier-eslint-cli": "^5.0.0", "ramda": "^0.27.0", "sort-package-json": "^1.22.1", "standard-version": "^7.1.0" } }