Mirror: The small sibling of the graphql package, slimmed down for client-side libraries.
1const rootPkg = require('../../package.json');
2const gqlPkg = require('graphql/package.json');
3
4export default JSON.stringify({
5 ...gqlPkg,
6 name: 'graphql-web-lite',
7 version: gqlPkg.version + '-lite',
8 homepage: rootPkg.homepage,
9 bugs: rootPkg.bugs,
10 repository: rootPkg.repository,
11}, null, 2);