mirror of
https://github.com/vale981/apollo-server
synced 2025-03-06 10:11:40 -05:00
71 lines
2 KiB
JSON
71 lines
2 KiB
JSON
{
|
|
"name": "apollo-server",
|
|
"version": "0.2.0-rc.2",
|
|
"description": "Production-ready Node.js GraphQL server for Express, HAPI, Koa",
|
|
"main": "dist/index.js",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"postinstall": "typings install && npm dedupe",
|
|
"prepublish": "npm run compile",
|
|
"pretest": "npm run compile",
|
|
"test": "npm run testonly --",
|
|
"posttest": "npm run lint",
|
|
"lint": "tslint ./src/**/*.ts",
|
|
"watch": "tsc -w",
|
|
"testonly": "mocha --compilers js:babel-core/register --reporter spec --full-trace ./dist/test/tests.js",
|
|
"coverage": "babel-node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
|
|
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/apollostack/apollo-server.git"
|
|
},
|
|
"keywords": [
|
|
"GraphQL",
|
|
"Apollo",
|
|
"HAPI",
|
|
"Koa",
|
|
"Express",
|
|
"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": {
|
|
"express": "^4.14.0",
|
|
"graphql": "^0.6.1",
|
|
"hapi": "^13.5.0",
|
|
"http-errors": "^1.5.0",
|
|
"source-map-support": "^0.4.2"
|
|
},
|
|
"devDependencies": {
|
|
"babel-cli": "^6.11.4",
|
|
"babel-core": "^6.11.4",
|
|
"babel-polyfill": "^6.9.1",
|
|
"babel-preset-es2015": "^6.9.0",
|
|
"body-parser": "^1.15.2",
|
|
"chai": "^3.5.0",
|
|
"istanbul": "1.0.0-alpha.2",
|
|
"mocha": "^2.5.3",
|
|
"multer": "^1.1.0",
|
|
"remap-istanbul": "^0.6.4",
|
|
"supertest": "^1.2.0",
|
|
"supertest-as-promised": "^3.2.0",
|
|
"tslint": "^3.13.0",
|
|
"typescript": "^1.8.10",
|
|
"typings": "^1.3.2"
|
|
},
|
|
"peerDependencies": {
|
|
"graphql": "^0.6.1"
|
|
},
|
|
"typings": "dist/index.d.ts",
|
|
"typescript": {
|
|
"definition": "dist/index.d.ts"
|
|
}
|
|
}
|