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-12-12 13:31:37 +00:00
|
|
|
"@types/chai": "4.0.10",
|
2017-12-25 08:47:19 +00:00
|
|
|
"@types/mocha": "2.2.45",
|
2017-12-21 06:16:22 +00:00
|
|
|
"@types/node": "8.5.2",
|
2017-12-19 07:44:31 -08:00
|
|
|
"@types/sinon": "4.1.2",
|
2017-09-02 06:34:49 +00:00
|
|
|
"chai": "4.1.2",
|
2017-10-04 06:56:24 +00:00
|
|
|
"graphql": "0.11.7",
|
2017-08-24 23:33:46 -07:00
|
|
|
"istanbul": "1.1.0-alpha.1",
|
2017-11-03 05:21:39 +00:00
|
|
|
"lerna": "2.5.1",
|
2017-10-06 06:23:56 +00:00
|
|
|
"mocha": "4.0.1",
|
2017-12-22 06:44:16 +00:00
|
|
|
"npm-check-updates": "2.14.0",
|
2017-08-24 05:27:05 +00:00
|
|
|
"remap-istanbul": "0.9.5",
|
2017-12-11 19:19:20 +00:00
|
|
|
"sinon": "4.1.3",
|
2017-08-24 05:27:05 +00:00
|
|
|
"supertest": "3.0.0",
|
|
|
|
"supertest-as-promised": "4.0.2",
|
2017-08-28 08:36:21 +00:00
|
|
|
"tslint": "5.7.0",
|
2017-12-12 17:24:57 +00:00
|
|
|
"typescript": "2.6.2"
|
2016-04-24 15:55:22 -07:00
|
|
|
}
|
2016-11-16 03:17:54 +01:00
|
|
|
}
|