122 lines
4.5 KiB
JSON
122 lines
4.5 KiB
JSON
{
|
|
"_from": "graphql-compose@^6.3.2",
|
|
"_id": "graphql-compose@6.3.5",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-XUpp7JqbaQ+vK/Nw4Jw0CQKs3UU8YFz3wpbBz+6WvPhrMkexco0bIbK4iGW9okQT7+/toAphEdVO4HFqM7lk2w==",
|
|
"_location": "/graphql-compose",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "range",
|
|
"registry": true,
|
|
"raw": "graphql-compose@^6.3.2",
|
|
"name": "graphql-compose",
|
|
"escapedName": "graphql-compose",
|
|
"rawSpec": "^6.3.2",
|
|
"saveSpec": null,
|
|
"fetchSpec": "^6.3.2"
|
|
},
|
|
"_requiredBy": [
|
|
"/gatsby"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/graphql-compose/-/graphql-compose-6.3.5.tgz",
|
|
"_shasum": "019a5a4441293cdf15dbe0173438a2c997017e26",
|
|
"_spec": "graphql-compose@^6.3.2",
|
|
"_where": "/Users/stefanfejes/Projects/30-seconds-of-python-code/node_modules/gatsby",
|
|
"bugs": {
|
|
"url": "https://github.com/graphql-compose/graphql-compose/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"collective": {
|
|
"type": "opencollective",
|
|
"url": "https://opencollective.com/graphql-compose",
|
|
"logo": "https://opencollective.com/graphql-compose/logo.txt"
|
|
},
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "./node_modules/cz-conventional-changelog"
|
|
}
|
|
},
|
|
"dependencies": {
|
|
"graphql-type-json": "^0.2.4",
|
|
"object-path": "^0.11.4"
|
|
},
|
|
"deprecated": false,
|
|
"description": "GraphQL schema builder from different data sources with middleware extensions.",
|
|
"devDependencies": {
|
|
"@babel/cli": "^7.4.3",
|
|
"@babel/core": "^7.4.3",
|
|
"@babel/plugin-proposal-class-properties": "^7.4.0",
|
|
"@babel/plugin-proposal-object-rest-spread": "^7.4.3",
|
|
"@babel/plugin-transform-flow-strip-types": "^7.4.0",
|
|
"@babel/plugin-transform-runtime": "^7.4.3",
|
|
"@babel/preset-env": "^7.4.3",
|
|
"@babel/preset-flow": "^7.0.0",
|
|
"@types/graphql": "^14.2.0",
|
|
"babel-core": "^7.0.0-bridge.0",
|
|
"babel-eslint": "^10.0.1",
|
|
"babel-jest": "^24.7.1",
|
|
"cz-conventional-changelog": "^2.1.0",
|
|
"eslint": "^5.16.0",
|
|
"eslint-config-airbnb-base": "^13.1.0",
|
|
"eslint-config-prettier": "^4.1.0",
|
|
"eslint-plugin-flowtype": "^3.5.1",
|
|
"eslint-plugin-import": "^2.16.0",
|
|
"eslint-plugin-prettier": "^3.0.1",
|
|
"flow-bin": "0.96.0",
|
|
"graphql": "14.2.1",
|
|
"jest": "^24.7.1",
|
|
"prettier": "^1.16.4",
|
|
"rimraf": "^2.6.3",
|
|
"semantic-release": "^15.13.3",
|
|
"tslint": "^5.15.0",
|
|
"tslint-config-prettier": "^1.18.0",
|
|
"tslint-plugin-prettier": "^2.0.1",
|
|
"typescript": "^3.4.2"
|
|
},
|
|
"engines": {
|
|
"node": ">= 6"
|
|
},
|
|
"files": [
|
|
"lib",
|
|
"esm",
|
|
"mjs"
|
|
],
|
|
"homepage": "https://github.com/graphql-compose/graphql-compose",
|
|
"keywords": [
|
|
"graphql",
|
|
"compose"
|
|
],
|
|
"license": "MIT",
|
|
"main": "lib/index.js",
|
|
"module": "mjs/index.mjs",
|
|
"name": "graphql-compose",
|
|
"peerDependencies": {
|
|
"graphql": ">=0.13.0 || >=14.0.0 || >=14.1.0"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/graphql-compose/graphql-compose.git"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build-cjs && npm run build-mjs && npm run build-esm",
|
|
"build-cjs": "rimraf lib && BABEL_ENV=cjs babel src --ignore __tests__,__mocks__ -d lib && COPY_TO_FOLDER=lib npm run build-flow && COPY_TO_FOLDER=lib npm run build-ts",
|
|
"build-esm": "rimraf esm && BABEL_ENV=esm babel src --ignore __tests__,__mocks__ -d esm && COPY_TO_FOLDER=esm npm run build-flow && COPY_TO_FOLDER=esm npm run build-ts",
|
|
"build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo ./${COPY_TO_FOLDER:-lib}$filepath | sed 's/.\\/src\\//\\//g'`.flow; done",
|
|
"build-mjs": "rimraf mjs && BABEL_ENV=mjs babel src --ignore __tests__,__mocks__ -d mjs && yarn build-mjs-rename && COPY_TO_FOLDER=mjs npm run build-flow",
|
|
"build-mjs-rename": "find ./mjs -name \"*.js\" -exec bash -c 'mv \"$1\" \"${1%.js}\".mjs' - '{}' \\;",
|
|
"build-ts": "find ./src -name '*.d.ts' -not -path '*/__*' | while read filepath; do cp $filepath `echo ./${COPY_TO_FOLDER:-lib}$filepath | sed 's/.\\/src\\//\\//g'`; done",
|
|
"coverage": "jest --coverage --maxWorkers 4",
|
|
"eslint": "eslint --ext .js ./src",
|
|
"flow": "flow",
|
|
"lint": "npm run eslint && npm run tslint",
|
|
"semantic-release": "semantic-release",
|
|
"test": "npm run coverage && npm run lint && npm run flow && npm run tscheck",
|
|
"test-vers": "yarn add graphql@0.13.0 --dev && jest && yarn add graphql@14.0.0 --dev && jest",
|
|
"tscheck": "tsc --noEmit",
|
|
"tslint": "tslint -p . \"src/**/*.d.ts\"",
|
|
"watch": "jest --watch"
|
|
},
|
|
"types": "lib/index.d.ts",
|
|
"version": "6.3.5"
|
|
}
|