Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
1{ 2 "name": "graphql-web-lite", 3 "version": "15.0.0-alpha.0", 4 "license": "MIT", 5 "workspaces": [ 6 "dist", 7 "scripts/buildenv" 8 ], 9 "scripts": { 10 "test": "jest", 11 "build": "rollup -c scripts/rollup/config.js", 12 "size-check": "yarn workspace @graphql-web-lite/buildenv build", 13 "prepublishOnly": "run-s test build" 14 }, 15 "keywords": [ 16 "regex", 17 "sticky regex", 18 "parser", 19 "parser generator", 20 "babel" 21 ], 22 "private": true, 23 "homepage": "https://github.com/kitten/graphql-web-lite", 24 "bugs": { 25 "url": "https://github.com/kitten/graphql-web-lite/issues" 26 }, 27 "repository": { 28 "type": "git", 29 "url": "https://github.com/kitte/graphql-web-lite.git" 30 }, 31 "devDependencies": { 32 "@babel/core": "^7.15.0", 33 "@rollup/plugin-babel": "^5.3.0", 34 "@rollup/plugin-buble": "^0.21.3", 35 "@rollup/plugin-node-resolve": "^13.0.4", 36 "babel-plugin-modular-graphql": "^1.0.1", 37 "graphql": "^16.0.0-alpha.5", 38 "husky-v4": "^4.3.8", 39 "jest": "^27.1.0", 40 "lint-staged": "^11.1.2", 41 "npm-run-all": "^4.1.5", 42 "prettier": "^2.3.2", 43 "reghex": "^3.0.2", 44 "rollup": "^2.56.2", 45 "rollup-plugin-terser": "^7.0.2", 46 "semver": "^7.3.5", 47 "sucrase": "^3.20.1" 48 }, 49 "prettier": { 50 "singleQuote": true 51 }, 52 "lint-staged": { 53 "*.{mjs,js,json,md}": "prettier --write" 54 }, 55 "husky": { 56 "hooks": { 57 "pre-commit": "lint-staged --quiet --relative" 58 } 59 }, 60 "jest": { 61 "moduleFileExtensions": [ 62 "mjs", 63 "js" 64 ], 65 "transformIgnorePatterns": [], 66 "transform": { 67 "\\.m?js$": "<rootDir>/scripts/jest/transform-esm.js" 68 } 69 } 70}