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