2018-09-17 15:53:23 +03:00
|
|
|
{
|
|
|
|
"name": "json2graphql",
|
|
|
|
"description": "A CLI tool to import JSON data in Hasura GraphQL Engine",
|
2018-10-16 12:23:01 +03:00
|
|
|
"version": "0.1.3",
|
2018-09-17 15:53:23 +03:00
|
|
|
"author": "Hasura",
|
|
|
|
"bin": {
|
|
|
|
"json2graphql": "./bin/run",
|
|
|
|
"j2g": "./bin/run"
|
|
|
|
},
|
|
|
|
"bugs": "https://github.com/hasura/graphql-engine/issues?q=is%3Aissue+is%3Aopen+label%3Ac%2Fjson2graphql",
|
|
|
|
"dependencies": {
|
|
|
|
"@oclif/command": "^1.4.35",
|
|
|
|
"@oclif/config": "^1.6.33",
|
|
|
|
"@oclif/errors": "^1.1.2",
|
|
|
|
"@oclif/plugin-help": "^2.0.5",
|
|
|
|
"cli-ux": "^4.7.3",
|
|
|
|
"graphqurl": "^0.3.2",
|
|
|
|
"moment": "^2.22.2",
|
|
|
|
"node-fetch": "^2.2.0"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
|
|
|
"eslint": "^4.19.1",
|
|
|
|
"eslint-config-oclif": "^1.5.1"
|
|
|
|
},
|
|
|
|
"engines": {
|
|
|
|
"node": ">=8.0.0"
|
|
|
|
},
|
|
|
|
"files": [
|
|
|
|
"/bin",
|
|
|
|
"/src"
|
|
|
|
],
|
|
|
|
"homepage": "https://github.com/wawhal/graphql-engine/tree/master/community/tools/json2graphql",
|
|
|
|
"keywords": [
|
|
|
|
"oclif",
|
|
|
|
"cli",
|
|
|
|
"graphql",
|
|
|
|
"grapql-engine",
|
|
|
|
"json"
|
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"main": "src/command.js",
|
|
|
|
"oclif": {
|
|
|
|
"bin": "json2graphql"
|
|
|
|
},
|
|
|
|
"repository": "hasura/graphql-engine",
|
|
|
|
"scripts": {
|
|
|
|
"eslint": "eslint .",
|
|
|
|
"eslintfix": "eslint . --fix",
|
|
|
|
"posttest": "npm run eslint",
|
|
|
|
"test": "cd test && ./test.sh"
|
|
|
|
},
|
|
|
|
"pre-commit": [
|
|
|
|
"eslintfix"
|
|
|
|
]
|
|
|
|
}
|