-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
49 lines (49 loc) · 1.17 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
{
"name": "graphql-fetch-schema",
"version": "1.1.0",
"description": "Fetch a GraphQL schema from a server and write it to file",
"keywords": [
"graphql",
"schema"
],
"repository": {
"type": "git",
"url": "https://github.com/MainframeHQ/graphql-fetch-schema.git"
},
"author": "Mainframe",
"license": "MIT",
"files": [
"bin/*",
"lib/*"
],
"main": "lib/index.js",
"bin": {
"graphql-fetch-schema": "./bin/graphql-fetch-schema"
},
"scripts": {
"clean": "del ./lib",
"compile": "babel src --out-dir lib",
"build": "npm run clean && npm run compile",
"flow": "flow check",
"test": "npm run flow",
"start": "npm test && npm run build",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@babel/runtime": "^7.2.0",
"commander": "^2.19.0",
"graphql": "^14.0.2",
"node-fetch": "^2.3.0",
"ora": "^3.0.0"
},
"devDependencies": {
"@babel/cli": "^7.2.3",
"@babel/core": "^7.2.2",
"@babel/plugin-transform-runtime": "^7.2.0",
"@babel/preset-env": "^7.2.3",
"@babel/preset-flow": "^7.0.0",
"del-cli": "^1.1.0",
"flow-bin": "^0.89.0",
"prettier": "^1.15.3"
}
}