-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
46 lines (46 loc) · 952 Bytes
/
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
{
"name": "gql2flow",
"version": "0.4.5",
"description": "Convert a GraphQL Schema to a Flowtype definition",
"main": "index.js",
"dependencies": {
"commander": "^2.9.0",
"is-url": "^1.2.2",
"node-fetch": "^1.6.3"
},
"devDependencies": {
"@types/graphql": "^0.7.1",
"@types/node": "^6.0.45",
"chai": "^3.5.0",
"graphql": "^0.9.6",
"mocha": "^2.4.5"
},
"scripts": {
"test": "mocha"
},
"keywords": [
"typescript",
"graphql"
],
"files": [
"index.js",
"util"
],
"author": "Joar Wilk <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/joarwilk/gql2flow.git"
},
"bin": {
"gql2flow": "./index.js"
},
"engines": {
"node": ">=4.0.0"
},
"perferGlobal": true,
"bugs": {
"url": "https://github.com/joarwilk/gql2flow/issues"
},
"homepage": "https://github.com/joarwilk/gql2flow#readme"
}