forked from graphql/graphiql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "graphql-language-service",
"version": "2.3.4",
"description": "An interface for building GraphQL language services for IDEs",
"contributors": [
"Hyohyeon Jeong <[email protected]>",
"Lee Byron <[email protected]> (http://leebyron.com/)"
],
"repository": "http://github.com/graphql/graphiql",
"homepage": "https://github.com/graphql/graphiql/tree/master/packages/graphql-language-service#readme",
"bugs": {
"url": "https://github.com/graphql/graphiql/issues?q=issue+label:language-service"
},
"bin": {
"graphql": "./bin/graphql.js"
},
"license": "MIT",
"files": [
"bin",
"dist",
"esm"
],
"keywords": [
"graphql",
"graphql-language-service"
],
"scripts": {
"test": "node ../../resources/runTests.js",
"build": "yarn run build-js && yarn build-esm && yarn run build-flow",
"build-js": "node ../../resources/buildJs.js",
"build-esm": "ESM=true babel src --root-mode upward --ignore __tests__ --out-dir esm",
"build-flow": "node ../../resources/buildFlow.js"
},
"peerDependencies": {
"graphql": "^0.12.0 || ^0.13.0 || ^14.0.0"
},
"dependencies": {
"@babel/polyfill": "7.7.0",
"graphql-config": "2.2.1",
"graphql-language-service-interface": "^2.3.3",
"graphql-language-service-server": "^2.3.3",
"graphql-language-service-utils": "^2.3.3",
"yargs": "^3.32.0 || ^7.0.0"
}
}