mirror of
https://github.com/hasura/graphql-engine.git
synced 2024-12-18 04:51:35 +03:00
56 lines
1.2 KiB
JSON
56 lines
1.2 KiB
JSON
{
|
|
"name": "json2graphql",
|
|
"description": "A CLI tool to import JSON data in Hasura GraphQL Engine",
|
|
"version": "0.1.4",
|
|
"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.3",
|
|
"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"
|
|
]
|
|
}
|