-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "json-to-graphql-typesystem",
"version": "0.3.2",
"description": "Convert json data to GraphQL type system",
"main": "json-to-graphql-typesystem.js",
"scripts": {
"test": "nyc --reporter=lcov tape tests/*.test.js",
"coverage": "nyc --reporter=text-lcov report | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MorganConrad/json-to-graphql-typesystem.git"
},
"keywords": [
"json",
"graphql",
"graphql-schema",
"convert"
],
"files": [
"cli.js",
"cli_helper.js",
"json-to-graphql-typesystem.js",
"lib/*"
],
"devDependencies": {
"coveralls": "^3.0",
"nyc": "^15.0.0",
"tape": "^4.6"
},
"dependencies": {
"gnucl": "MorganConrad/gnucl",
"mongodb": "^3.4.1"
},
"author": "Morgan Conrad <flyingspaniel@gmail.com> (http://flyingspaniel.com/)",
"license": "MIT",
"bin": {
"j2gt": "./cli.js"
},
"bugs": {
"url": "https://github.com/MorganConrad/json-to-graphql-typesystem/issues"
},
"homepage": "https://github.com/MorganConrad/json-to-graphql-typesystem#readme"
}