mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 18:21:40 -05:00
42 lines
1 KiB
JSON
42 lines
1 KiB
JSON
{
|
|
"name": "graphql-server-core",
|
|
"version": "0.8.0",
|
|
"description": "Core engine for Apollo GraphQL server",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"prepublish": "npm run compile"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/apollostack/graphql-server/tree/master/packages/graphql-server-core"
|
|
},
|
|
"keywords": [
|
|
"GraphQL",
|
|
"Apollo",
|
|
"Server",
|
|
"Javascript"
|
|
],
|
|
"author": "Jonas Helfer <jonas@helfer.email>",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/apollostack/graphql-server/issues"
|
|
},
|
|
"homepage": "https://github.com/apollostack/graphql-server#readme",
|
|
"devDependencies": {
|
|
"@types/fibers": "0.0.29",
|
|
"@types/graphql": "^0.9.1",
|
|
"fibers": "^2.0.0",
|
|
"meteor-promise": "^0.8.4"
|
|
},
|
|
"peerDependencies": {
|
|
"graphql": "^0.9.0 || ^0.10.1"
|
|
},
|
|
"optionalDependencies": {
|
|
"@types/graphql": "^0.9.1"
|
|
},
|
|
"typings": "dist/index.d.ts",
|
|
"typescript": {
|
|
"definition": "dist/index.d.ts"
|
|
}
|
|
}
|