UNPKG

apollo-progressive-fragment-matcher

Version:

A smart alternative to the introspection fragment matcher.

92 lines (91 loc) 2.4 kB
{ "name": "apollo-progressive-fragment-matcher", "version": "1.0.8", "private": false, "description": "A smart alternative to the introspection fragment matcher.", "keywords": [ "apollo", "apollo-client", "fragments", "graphql", "introspection" ], "homepage": "https://github.com/lucasconstantino/apollo-progressive-fragment-matcher", "bugs": { "url": "https://github.com/lucasconstantino/apollo-progressive-fragment-matcher/issues" }, "license": "MIT", "author": "Lucas Constantino Silva <lucasconstantinosilva@gmail.com>", "files": [ "lib/**/*" ], "main": "lib/index.js", "scripts": { "codecov": "yarn test && codecov", "compile": "babel src -d lib --ignore src/**/*.test.js", "lint": "eslint src", "precommit": "lint-staged", "prepush": "yarn qa", "prepublish": "yarn qa && yarn compile", "qa": "yarn test && yarn lint", "release": "standard-version", "test": "jest src" }, "lint-staged": { "*.js": [ "prettier-eslint --write", "git add" ], "package.json": [ "sort-package-json", "git add" ] }, "jest": { "collectCoverage": true, "collectCoverageFrom": [ "src/**/*.js" ], "coverageThreshold": { "global": { "branches": 90, "functions": 90, "lines": 90, "statements": 90 } } }, "devDependencies": { "@babel/cli": "^7.2.3", "@babel/core": "^7.3.3", "@babel/plugin-transform-runtime": "^7.4.3", "@babel/preset-env": "^7.3.1", "apollo-cache-inmemory": "^1.5.1", "apollo-client": "^2.5.1", "apollo-server": "^2.4.8", "apollo-server-testing": "^2.4.8", "apollo-utilities": "^1.2.1", "codecov": "^3.3.0", "eslint": "^5.14.1", "eslint-config-standard": "^12.0.0", "eslint-plugin-import": "^2.16.0", "eslint-plugin-node": "^8.0.1", "eslint-plugin-promise": "^4.0.1", "eslint-plugin-standard": "^4.0.0", "graphql": "^14.2.1", "graphql-tag": "^2.10.1", "husky": "^1.3.1", "invariant": "^2.2.4", "jest": "^24.1.0", "lint-staged": "^8.1.4", "prettier-eslint-cli": "^4.7.1", "sort-package-json": "^1.19.0", "standard-version": "^5.0.0" }, "peerDependencies": { "apollo-cache-inmemory": "^1.5.1", "apollo-link": "^1.2.11", "graphql": "^14.2.1", "invariant": "^2.2.4" } }