forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.36 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
{
"name": "graphql-language-service-interface",
"version": "2.0.1",
"description": "Interface to the GraphQL Language Service",
"contributors": [
"Greg Hurrell <[email protected]> (https://greg.hurrell.net/)",
"Hyohyeon Jeong <[email protected]>",
"Lee Byron <[email protected]> (http://leebyron.com/)"
],
"repository": "https://github.com/graphql/graphiql/tree/master/packages/graphql-language-service-interface",
"homepage": "https://github.com/graphql/graphiql/tree/master/packages/graphql-language-service-interface#readme",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:language-interface"
},
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"graphql"
],
"main": "dist/index.js",
"scripts": {
"test": "echo 'Please run `npm test` from the root of the repo' && exit 1",
"build": "yarn run build-js && yarn run build-flow",
"build-js": "node ../../resources/buildJs.js",
"build-flow": "node ../../resources/buildFlow.js",
"prepublish": "node ../../resources/prepublish.js"
},
"peerDependencies": {
"graphql": "^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
},
"dependencies": {
"graphql-config": "2.2.1",
"graphql-language-service-parser": "^2.0.1",
"graphql-language-service-types": "^2.0.1",
"graphql-language-service-utils": "^2.0.1"
}
}