2016-04-24 15:55:22 -07:00
|
|
|
{
|
2016-10-03 23:13:08 +03:00
|
|
|
"private": true,
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2017-07-17 16:29:40 -07:00
|
|
|
"url": "git+https://github.com/apollographql/apollo-server.git"
|
2016-04-24 15:55:22 -07:00
|
|
|
},
|
|
|
|
"scripts": {
|
2016-10-03 23:13:08 +03:00
|
|
|
"compile": "lerna exec -- npm run compile",
|
2017-01-24 13:40:38 +02:00
|
|
|
"lint": "tslint ./packages/**/src/**/*.ts --exclude \"./packages/**/node_modules/**/*.ts\"",
|
2016-10-03 23:13:08 +03:00
|
|
|
"prebootstrap": "npm install",
|
2016-10-05 02:32:12 +03:00
|
|
|
"postinstall": "lerna bootstrap",
|
2016-06-10 20:48:21 -04:00
|
|
|
"pretest": "npm run compile",
|
|
|
|
"test": "npm run testonly --",
|
|
|
|
"posttest": "npm run lint",
|
2017-01-24 14:33:31 +02:00
|
|
|
"testonly": "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",
|
2017-01-24 13:23:46 +02:00
|
|
|
"pretravis": "npm run compile",
|
2017-01-24 14:33:31 +02:00
|
|
|
"travis": "istanbul cover -x \"*.test.js\" _mocha -- --timeout 5000 --full-trace ./test/tests.js",
|
2017-01-24 13:23:46 +02:00
|
|
|
"posttravis": "npm run lint",
|
2017-01-24 14:19:27 +02:00
|
|
|
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
|
2017-03-22 13:23:00 +02:00
|
|
|
"release": "lerna publish"
|
2016-04-24 15:55:22 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2017-08-24 05:27:05 +00:00
|
|
|
"@types/chai": "4.0.4",
|
|
|
|
"@types/mocha": "2.2.42",
|
2017-08-31 06:38:43 +00:00
|
|
|
"@types/node": "8.0.26",
|
2017-08-24 05:27:05 +00:00
|
|
|
"@types/sinon": "2.3.3",
|
|
|
|
"chai": "4.1.1",
|
2017-08-31 10:36:15 +00:00
|
|
|
"graphql": "0.11.2",
|
2017-08-24 23:33:46 -07:00
|
|
|
"istanbul": "1.1.0-alpha.1",
|
2017-09-01 06:37:35 +00:00
|
|
|
"lerna": "2.1.2",
|
2017-08-24 05:27:05 +00:00
|
|
|
"mocha": "3.5.0",
|
|
|
|
"npm-check-updates": "2.12.1",
|
|
|
|
"remap-istanbul": "0.9.5",
|
|
|
|
"sinon": "3.2.1",
|
|
|
|
"supertest": "3.0.0",
|
|
|
|
"supertest-as-promised": "4.0.2",
|
2017-08-28 08:36:21 +00:00
|
|
|
"tslint": "5.7.0",
|
2017-08-24 05:27:05 +00:00
|
|
|
"typescript": "2.5.1"
|
2016-04-24 15:55:22 -07:00
|
|
|
}
|
2016-11-16 03:17:54 +01:00
|
|
|
}
|