apollo-server/package.json
2016-06-10 17:05:39 -07:00

48 lines
1.1 KiB
JSON

{
"name": "apollo-server",
"version": "0.2.0",
"description": "Apollo GraphQL server for Node.js",
"main": "dist/index.js",
"directories": {
"test": "test"
},
"scripts": {
"compile": "tsc",
"postinstall": "typings install && npm dedupe",
"prepublish": "npm run compile",
"test": "mocha --reporter spec --full-trace test/tests.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/apollo-server.git"
},
"keywords": [
"GraphQL",
"Apollo",
"Meteor",
"Proxy",
"Cache",
"Javascript"
],
"author": "Jonas Helfer <jonas@helfer.email>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollostack/apollo-proxy/issues"
},
"homepage": "https://github.com/apollostack/apollo-proxy#readme",
"dependencies": {
"es6-promise": "^3.2.1",
"source-map-support": "^0.4.0"
},
"devDependencies": {
"chai": "^3.5.0",
"graphql": "^0.6.0",
"istanbul": "1.0.0-alpha.2",
"mocha": "^2.3.3",
"typescript": "^1.8.10",
"typings": "^1.0.4"
},
"peerDependencies": {
"graphql": "^0.6.0"
}
}