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.1",
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 "graphql",
17 "graphql-js",
18 "lite"
19 ],
20 "private": true,
21 "homepage": "https://github.com/kitten/graphql-web-lite",
22 "bugs": {
23 "url": "https://github.com/kitten/graphql-web-lite/issues"
24 },
25 "repository": {
26 "type": "git",
27 "url": "https://github.com/kitte/graphql-web-lite.git"
28 },
29 "devDependencies": {
30 "@babel/core": "^7.15.0",
31 "@rollup/plugin-babel": "^5.3.0",
32 "@rollup/plugin-buble": "^0.21.3",
33 "@rollup/plugin-node-resolve": "^13.0.4",
34 "babel-plugin-modular-graphql": "^1.0.1",
35 "graphql": "^16.0.0-alpha.5",
36 "husky-v4": "^4.3.8",
37 "jest": "^27.1.0",
38 "lint-staged": "^11.1.2",
39 "npm-run-all": "^4.1.5",
40 "prettier": "^2.3.2",
41 "reghex": "^3.0.2",
42 "rollup": "^2.56.2",
43 "rollup-plugin-terser": "^7.0.2",
44 "semver": "^7.3.5",
45 "sucrase": "^3.20.1"
46 },
47 "prettier": {
48 "singleQuote": true
49 },
50 "lint-staged": {
51 "*.{mjs,js,json,md}": "prettier --write"
52 },
53 "husky": {
54 "hooks": {
55 "pre-commit": "lint-staged --quiet --relative"
56 }
57 },
58 "jest": {
59 "moduleFileExtensions": [
60 "mjs",
61 "js"
62 ],
63 "transformIgnorePatterns": [],
64 "transform": {
65 "\\.m?js$": "<rootDir>/scripts/jest/transform-esm.js"
66 }
67 }
68}