-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.41 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
57
58
59
60
61
62
63
64
65
66
{
"name": "fetch-graphql-schema",
"version": "0.2.1",
"description": "fetch GraphQL schema via introspection query",
"main": "lib/index.js",
"license": "MIT",
"repository": "Yoctol/fetch-graphql-schema",
"author": {
"name": "C.T. Lin",
"email": "[email protected]",
"url": "github.com/chentsulin"
},
"engines": {
"node": ">=0.12.0"
},
"bin": "bin/fetch-graphql-schema.js",
"files": [
"bin/",
"lib/",
"src/"
],
"keywords": [
"graphql",
"schema",
"json",
"server",
"fetch"
],
"dependencies": {
"chalk": "^1.1.3",
"graphql": "^0.8.0",
"meow": "^3.7.0",
"mkdirp": "^0.5.1",
"node-fetch": "^2.6.1"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-jest": "^17.0.0",
"babel-preset-latest": "^6.16.0",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"fetch-mock": "^5.5.0",
"jest": "^17.0.0",
"rimraf": "^2.5.4"
},
"scripts": {
"build": "npm run clean && babel src -d lib --ignore __tests__",
"clean": "rimraf lib",
"test": "jest",
"test:cov": "jest --coverage",
"lint": "eslint .",
"preversion": "npm test"
},
"devEngines": {
"node": "4.x || 5.x || 6.x || 7.x",
"npm": "2.x || 3.x || 4.x"
},
"jest": {
"verbose": true,
"collectCoverageFrom": [
"src/**/*.js"
],
"testEnvironment": "node"
}
}