forked from hasura/json2graphql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.16 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "json2graphql",
"description": "A CLI tool to import JSON data in Hasura GraphQL Engine",
"version": "0.1.5",
"author": "Hasura",
"bin": {
"json2graphql": "./bin/run",
"j2g": "./bin/run"
},
"bugs": "https://github.com/hasura/json2graphql/issues",
"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/hasura/json2graphql",
"keywords": [
"oclif",
"cli",
"graphql",
"grapql-engine",
"json",
"mock"
],
"license": "MIT",
"main": "src/command.js",
"oclif": {
"bin": "json2graphql"
},
"repository": "hasura/json2graphql",
"scripts": {
"eslint": "eslint .",
"eslintfix": "eslint . --fix",
"posttest": "npm run eslint",
"test": "cd test && ./test.sh"
},
"pre-commit": [
"eslintfix"
]
}