forked from jakepusateri/graphql-list-fields
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1000 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1000 Bytes
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
{
"name": "@orbiting/graphql-list-fields",
"version": "2.0.2",
"description": "Get a list of fields while resolving a GraphQL query",
"main": "index.js",
"scripts": {
"test": "jest --coverage",
"test-ci": "npm run test && cat ./coverage/lcov.info | coveralls",
"test-watch": "jest --watch",
"prettier": "prettier __tests__/*.js *.js --write --tab-width 4 --single-quote --print-width 120"
},
"repository": {
"type": "git",
"url": "git+https://github.com/orbiting/graphql-list-fields.git"
},
"author": "jakepusateri",
"license": "MIT",
"bugs": {
"url": "https://github.com/orbiting/graphql-list-fields/issues"
},
"homepage": "https://github.com/orbiting/graphql-list-fields#readme",
"keywords": [
"ast",
"schema",
"fields",
"graphqlresolveinfo",
"graphql-js",
"graphql"
],
"devDependencies": {
"coveralls": "^3.0.0",
"graphql": "^0.11.7",
"jest": "^21.2.1",
"prettier": "^1.11.1"
},
"files": []
}