graphql-s2s
Version:
Transpile an enriched GraphQL string schema (e.g. support for metadata, inheritance, generic types, ...) into the standard string schema understood by graphql.js and the Apollo server client.
80 lines (79 loc) • 2.18 kB
JSON
{
"name": "graphql-s2s",
"version": "0.22.0",
"description": "Transpile an enriched GraphQL string schema (e.g. support for metadata, inheritance, generic types, ...) into the standard string schema understood by graphql.js and the Apollo server client.",
"main": "./src/graphqls2s.js",
"scripts": {
"build": "WEBPACK_ENV=build webpack",
"dev": "WEBPACK_ENV=dev webpack",
"lint": "eslint src/ test/ --fix",
"push": "git push --follow-tags origin master && npm publish",
"rls": "standard-version --release-as",
"test": "mocha ./test/node/*.js",
"test:dev": "MOCHA_ENV=dev mocha ./test/node/*.js",
"v": "node -e \"console.log(require('./package.json').version)\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/nicolasdao/graphql-s2s.git"
},
"keywords": [
"graphql",
"schema",
"transpiler",
"metadata",
"inheritance",
"generic",
"types",
"neap"
],
"author": "Nicolas Dao",
"contributors": [
{
"name": "Nicolas Dao",
"email": "nic@neap.co",
"url": "https://github.com/nicolasdao"
},
{
"name": "Brendan Johnson",
"email": "brendan@neap.co",
"url": "https://github.com/BrendanJohnson"
},
{
"name": "Boris Berak",
"email": "boris@neap.co",
"url": "https://github.com/bberak"
},
{
"name": "Pankaj Parkar",
"email": "pankajparkar@hotmail.com",
"url": "https://github.com/pankajparkar"
}
],
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/nicolasdao/graphql-s2s/issues"
},
"homepage": "https://github.com/nicolasdao/graphql-s2s#readme",
"publishConfig": {
"access": "public"
},
"dependencies": {
"graphql": "^0.11.7",
"lodash": "^4.17.21",
"shortid": "^2.2.16"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@babel/runtime-corejs3": "^7.15.4",
"babel-loader": "^8.2.2",
"chai": "^4.3.4",
"core-js": "^3.18.2",
"eslint": "^7.32.0",
"mocha": "^9.1.2",
"standard-version": "^9.3.1",
"webpack": "^5.58.0",
"webpack-cli": "^4.9.0"
}
}