graphql-compose
Version:
GraphQL schema builder from different data sources with middleware extensions.
88 lines • 2.83 kB
JSON
{
"name": "graphql-compose",
"version": "1.18.1",
"description": "GraphQL schema builder from different data sources with middleware extensions.",
"files": [
"es",
"lib"
],
"main": "lib/index.js",
"jsnext:main": "es/index.js",
"repository": {
"type": "git",
"url": "https://github.com/nodkz/graphql-compose.git"
},
"keywords": [
"graphql",
"compose"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nodkz/graphql-compose/issues"
},
"homepage": "https://github.com/nodkz/graphql-compose",
"peerDependencies": {
"graphql": ">=0.8.0 || >=0.9.0"
},
"devDependencies": {
"babel-cli": "^6.23.0",
"babel-core": "^6.23.1",
"babel-eslint": "^7.1.1",
"babel-plugin-syntax-async-functions": "6.13.0",
"babel-plugin-transform-class-properties": "^6.23.0",
"babel-plugin-transform-flow-strip-types": "^6.22.0",
"babel-plugin-transform-object-rest-spread": "^6.23.0",
"babel-plugin-transform-regenerator": "^6.22.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-preset-es2015": "^6.22.0",
"chai": "3.5.0",
"chai-as-promised": "6.0.0",
"chai-spies": "0.7.1",
"cz-conventional-changelog": "^2.0.0",
"eslint": "^3.17.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-flowtype": "^2.30.3",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.41.0",
"graphql": "^0.9.1",
"mocha": "^3.2.0",
"nyc": "^10.1.2",
"rimraf": "^2.6.1",
"sane": "^1.6.0",
"semantic-release": "^6.3.2"
},
"dependencies": {
"babel-runtime": "^6.23.0",
"object-path": "^0.11.4"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"**/__mocks__/**",
"**/__tests__/**",
"resources",
"node_modules"
],
"reporter": [
"lcov",
"text"
]
},
"scripts": {
"build": "npm run build-cjs && npm run build-flow && npm run build-es",
"build-cjs": "rimraf lib && babel src --ignore __tests__,__mocks__ -d lib",
"build-es": "rimraf es && BABEL_ENV=es babel src --ignore __tests__,__mocks__ -d es",
"build-flow": "find ./src -name '*.js' -not -path '*/__*' | while read filepath; do cp $filepath `echo $filepath | sed 's/\\/src\\//\\/lib\\//g'`.flow; done",
"coverage": "nyc npm run test",
"lint": "eslint src test *.js",
"test": "babel-node ./node_modules/.bin/_mocha --compilers js:babel-core/register --reporter dot --require ./resources/mocha-bootload src/**/__tests__/**/*-test.js",
"watch": "babel-node ./resources/watch.js",
"link": "yarn link graphql && yarn link",
"unlink": "yarn unlink graphql && yarn add graphql",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
}
}