2016-12-14 14:51:56 -06:00
|
|
|
{
|
|
|
|
"name": "graphql-server-lambda",
|
|
|
|
"version": "0.5.1",
|
|
|
|
"description": "Production-ready Node.js GraphQL server for AWS Lambda",
|
|
|
|
"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-lambda"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"GraphQL",
|
|
|
|
"Apollo",
|
|
|
|
"Server",
|
|
|
|
"Lambda",
|
|
|
|
"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",
|
|
|
|
"dependencies": {
|
2017-02-02 02:57:07 +02:00
|
|
|
"graphql-server-core": "^0.6.0",
|
|
|
|
"graphql-server-module-graphiql": "^0.6.0"
|
2016-12-14 14:51:56 -06:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-02-02 02:57:07 +02:00
|
|
|
"@types/aws-lambda": "0.0.6",
|
2016-12-14 14:51:56 -06:00
|
|
|
"@types/graphql": "^0.8.6",
|
|
|
|
"graphql-server-integration-testsuite": "^0.5.1"
|
|
|
|
},
|
|
|
|
"peerDependencies": {
|
|
|
|
"graphql": "^0.8.0 || ^0.9.0"
|
|
|
|
},
|
|
|
|
"typings": "dist/index.d.ts",
|
|
|
|
"typescript": {
|
|
|
|
"definition": "dist/index.d.ts"
|
|
|
|
}
|
|
|
|
}
|