graphql-tools
Version:
A set of useful tools for GraphQL
86 lines (85 loc) • 2.44 kB
JSON
{
"name": "graphql-tools",
"version": "1.2.3",
"description": "A set of useful tools for GraphQL",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"directories": {
"test": "test"
},
"scripts": {
"clean": "rimraf dist",
"compile": "tsc",
"typings": "typings install",
"pretest": "npm run clean && npm run compile",
"test": "npm run testonly --",
"posttest": "npm run lint",
"lint": "tslint $(find src | grep ts$)",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js",
"coverage": "istanbul cover _mocha -- --reporter dot --full-trace ./dist/test/tests.js",
"postcoverage": "remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info",
"prepublish": "npm run compile",
"prerelease": "npm test",
"prettier": "prettier --trailing-comma all --single-quote --write 'src/**/*.ts'",
"release": "standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/graphql-tools.git"
},
"keywords": [
"GraphQL",
"Apollo",
"JavaScript",
"TypeScript",
"Mock",
"Schema",
"Schema Language",
"Tools"
],
"author": "Jonas Helfer <jonas@helfer.email>",
"license": "MIT",
"bugs": {
"url": "https://github.com/apollostack/graphql-tools/issues"
},
"homepage": "https://github.com/apollostack/graphql-tools#readme",
"dependencies": {
"deprecated-decorator": "^0.1.6",
"uuid": "^3.0.1"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0"
},
"optionalDependencies": {
"@types/graphql": "^0.9.0"
},
"devDependencies": {
"@types/bluebird": "^3.0.32",
"@types/chai": "3.5.2",
"@types/mocha": "^2.2.31",
"@types/node": "^7.0.5",
"@types/request": "0.0.43",
"@types/request-promise": "^4.1.33",
"@types/uuid": "^2.0.29",
"body-parser": "^1.15.0",
"chai": "^3.5.0",
"express": "^4.13.4",
"graphql": "^0.11.0",
"graphql-subscriptions": "^0.3.0",
"graphql-type-json": "^0.1.3",
"istanbul": "^0.4.5",
"mocha": "^3.0.1",
"prettier": "^1.5.3",
"remap-istanbul": "0.8.0",
"request": "^2.72.0",
"request-promise": "^4.1.0",
"rimraf": "^2.5.4",
"source-map-support": "^0.4.7",
"tslint": "^5.3.2",
"typescript": "2.3.3"
}
}