{ "private": true, "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/apollographql/apollo-server.git" }, "scripts": { "compile": "lerna run -- compile", "lint": "prettier-check --ignore-path .gitignore \"{docs/{,source/**},.,packages/**,test}/{*.js,*.ts}\"", "lint-fix": "prettier --write --ignore-path .gitignore \"{docs/{,source/**},.,packages/**,test}/{*.js,*.ts}\"", "prebootstrap": "npm install", "postinstall": "lerna bootstrap", "pretest": "npm run compile", "test": "npm run testonly", "posttest": "npm run lint", "testonly": "lerna run -- test && mocha --reporter spec --full-trace --timeout 5000 ./test/tests.js", "coverage": "istanbul cover -x \"*.test.js\" _mocha -- --timeout 5000 --full-trace --reporter dot ./test/tests.js", "pretravis": "npm run compile", "travis": "istanbul cover -x \"*.test.js\" _mocha -- --timeout 5000 --full-trace ./test/tests.js", "postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info", "release": "lerna publish", "precommit": "lint-staged" }, "lint-staged": { "*.ts": [ "prettier --write", "git add" ], "*.js": [ "prettier --write", "git add" ] }, "engines": { "node": ">=6" }, "devDependencies": { "@types/chai": "^4.1.4", "@types/graphql": "^0.13.1", "@types/mocha": "^5.2.3", "@types/node": "^10.3.6", "@types/sinon": "5.0.1", "chai": "4.1.2", "graphql": "^0.13.2", "husky": "^0.14.3", "istanbul": "^1.1.0-alpha.1", "lerna": "^2.11.0", "lint-staged": "^7.2.0", "mocha": "^5.2.0", "prettier": "^1.13.6", "prettier-check": "^2.0.0", "remap-istanbul": "^0.11.1", "sinon": "^6.0.1", "supertest": "^3.1.0", "typescript": "^2.9.2" } }