2016-04-24 15:55:22 -07:00
|
|
|
{
|
2016-10-03 23:13:08 +03:00
|
|
|
"private": true,
|
|
|
|
"license": "MIT",
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2016-10-18 09:36:07 +03:00
|
|
|
"url": "git+https://github.com/apollostack/graphql-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",
|
|
|
|
"lint": "tslint ./packages/**/src/**/*.ts",
|
|
|
|
"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",
|
2016-10-03 23:13:08 +03:00
|
|
|
"testonly": "mocha --compilers js:babel-core/register --reporter spec --full-trace ./test/tests.js",
|
2016-10-06 11:01:12 +03:00
|
|
|
"coverage": "istanbul cover -x \"*.test.js\" _mocha -- --compilers js:babel-core/register --full-trace --reporter dot ./test/tests.js",
|
2016-06-10 20:48:21 -04:00
|
|
|
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info"
|
2016-04-24 15:55:22 -07:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2016-10-03 23:13:08 +03:00
|
|
|
"@types/chai": "^3.4.34",
|
2016-09-29 17:46:40 +03:00
|
|
|
"@types/mocha": "^2.2.32",
|
2016-10-03 23:13:08 +03:00
|
|
|
"@types/node": "^6.0.42",
|
2016-09-29 17:46:40 +03:00
|
|
|
"@types/sinon": "^1.16.31",
|
2016-07-26 15:52:01 -07:00
|
|
|
"babel-cli": "^6.11.4",
|
|
|
|
"babel-core": "^6.11.4",
|
2016-07-01 16:12:58 -07:00
|
|
|
"babel-polyfill": "^6.9.1",
|
2016-07-01 15:15:02 -07:00
|
|
|
"babel-preset-es2015": "^6.9.0",
|
2016-04-24 15:55:22 -07:00
|
|
|
"chai": "^3.5.0",
|
2016-11-16 03:17:54 +01:00
|
|
|
"graphql": "^0.8.2",
|
2016-04-24 15:55:22 -07:00
|
|
|
"istanbul": "1.0.0-alpha.2",
|
2016-10-05 02:05:51 +03:00
|
|
|
"lerna": "git://github.com/DxCx/lerna.git#bootstrap-dev-bin-pkg",
|
2016-10-10 00:47:37 -07:00
|
|
|
"mocha": "^3.1.1",
|
2016-12-26 00:06:37 +08:00
|
|
|
"remap-istanbul": "0.8.0",
|
2016-10-03 23:13:08 +03:00
|
|
|
"sinon": "^1.17.6",
|
2016-07-29 19:18:09 +02:00
|
|
|
"supertest": "^2.0.0",
|
2016-08-11 11:43:57 -07:00
|
|
|
"supertest-as-promised": "^4.0.0",
|
2016-07-26 15:52:01 -07:00
|
|
|
"tslint": "^3.13.0",
|
2016-10-03 23:13:08 +03:00
|
|
|
"typescript": "^2.0.3"
|
2016-04-24 15:55:22 -07:00
|
|
|
}
|
2016-11-16 03:17:54 +01:00
|
|
|
}
|