{ "name": "graphql-web-lite", "description": "graphql npm package slimmed down for client-side libraries", "version": "15.5.1000", "license": "MIT", "private": true, "workspaces": [ "scripts/buildenv" ], "scripts": { "test": "jest", "lint": "eslint --ext=js,mjs .", "build": "rollup -c scripts/rollup/config.js", "size-check": "yarn workspace @graphql-web-lite/buildenv build", "prepublishOnly": "run-s test build" }, "keywords": [ "graphql", "graphql-js", "lite" ], "homepage": "https://github.com/kitten/graphql-web-lite", "bugs": { "url": "https://github.com/kitten/graphql-web-lite/issues" }, "repository": { "type": "git", "url": "https://github.com/kitten/graphql-web-lite.git" }, "devDependencies": { "@babel/core": "^7.15.0", "@rollup/plugin-babel": "^5.3.0", "@rollup/plugin-buble": "^0.21.3", "@rollup/plugin-node-resolve": "^13.0.4", "@rollup/plugin-replace": "^3.0.0", "babel-plugin-modular-graphql": "^1.0.1", "eslint": "^7.32.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-prettier": "^4.0.0", "graphql": "^16.0.0-alpha.5", "husky-v4": "^4.3.8", "jest": "^27.1.0", "lint-staged": "^11.1.2", "npm-run-all": "^4.1.5", "prettier": "^2.3.2", "reghex": "^3.0.2", "rollup": "^2.56.2", "rollup-plugin-terser": "^7.0.2", "semver": "^7.3.5", "sucrase": "^3.20.1" }, "prettier": { "singleQuote": true }, "eslintConfig": { "root": true, "extends": [ "./scripts/eslint/preset.js" ] }, "lint-staged": { "*.{mjs,js}": "eslint --fix", "*.{json,md}": "prettier --write" }, "husky": { "hooks": { "pre-commit": "lint-staged --quiet --relative" } }, "jest": { "moduleFileExtensions": [ "mjs", "js" ], "transformIgnorePatterns": [], "transform": { "\\.m?js$": "/scripts/jest/transform-esm.js" } } }