-
Notifications
You must be signed in to change notification settings - Fork 62
/
Copy pathpackage.json
53 lines (53 loc) · 1.3 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
{
"name": "get-graphql-schema",
"version": "0.0.0-semantic-release",
"description": "Downloads the GraphQL Schema of an GraphQL endpoint URL",
"author": "Johannes Schickling <[email protected]>",
"bin": {
"get-schema": "dist/index.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/graphcool/get-graphql-schema.git"
},
"scripts": {
"build": "tsc -d",
"prepublish": "npm run build",
"test": "NODE_ENV=test jest",
"release": "semantic-release"
},
"dependencies": {
"chalk": "^2.4.1",
"graphql": "^14.1.1",
"meow": "^5.0.0",
"minimist": "^1.2.0",
"mkdirp": "^0.5.1",
"node-fetch": "^2.2.0",
"querystringify": "^2.1.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/graphql": "^14.0.3",
"@types/jest": "^23.3.10",
"@types/meow": "^5.0.0",
"@types/minimist": "^1.2.0",
"@types/mkdirp": "^0.5.2",
"@types/node": "^10.12.0",
"@types/node-fetch": "^2.1.2",
"@types/querystringify": "^2.0.0",
"jest": "^23.6.0",
"jest-fetch-mock": "^2.1.0",
"prettier": "^1.15.3",
"semantic-release": "^15.12.4",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.1.3"
},
"release": {
"branch": "master"
},
"license": "MIT"
}