graphql-compose-connection
Version:
Plugin for `graphql-compose` which provide a connection resolver for types.
60 lines (59 loc) • 1.76 kB
JSON
{
"name": "graphql-compose-connection",
"version": "8.2.1",
"description": "Plugin for `graphql-compose` which provide a connection resolver for types.",
"license": "MIT",
"files": [
"lib",
"README.md"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/graphql-compose/graphql-compose-connection.git"
},
"keywords": [
"graphql",
"compose",
"graphql-compose",
"relay"
],
"bugs": {
"url": "https://github.com/graphql-compose/graphql-compose-connection/issues"
},
"homepage": "https://github.com/graphql-compose/graphql-compose-connection",
"peerDependencies": {
"graphql-compose": "^7.15.0 || ^8.0.0 || ^9.0.0"
},
"devDependencies": {
"@types/jest": "26.0.24",
"@typescript-eslint/eslint-plugin": "4.28.2",
"@typescript-eslint/parser": "4.28.2",
"eslint": "7.30.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-config-prettier": "8.3.0",
"eslint-plugin-import": "2.23.4",
"eslint-plugin-prettier": "3.4.0",
"graphql": "15.5.1",
"graphql-compose": "9.0.1",
"jest": "27.0.6",
"prettier": "2.3.2",
"rimraf": "3.0.2",
"semantic-release": "17.4.4",
"ts-jest": "27.0.3",
"typescript": "4.3.5"
},
"scripts": {
"build": "rimraf lib && tsc -p ./tsconfig.build.json",
"watch": "jest --watch",
"coverage": "jest --coverage",
"lint": "yarn eslint && yarn tscheck",
"eslint": "eslint --ext .ts ./src",
"tscheck": "tsc --noEmit",
"test": "npm run coverage && npm run lint",
"link": "yarn build && yarn link graphql-compose && yarn link",
"unlink": "rimraf node_modules && yarn install",
"semantic-release": "semantic-release"
}
}