UNPKG

2.38 kBJSONView Raw
1{
2 "name": "graphql-tools",
3 "version": "3.0.0-alpha.8",
4 "description": "Useful tools to create and manipulate GraphQL schemas.",
5 "main": "dist/index.js",
6 "typings": "dist/index.d.ts",
7 "typescript": {
8 "definition": "dist/index.d.ts"
9 },
10 "directories": {
11 "test": "test"
12 },
13 "scripts": {
14 "clean": "rimraf dist",
15 "compile": "tsc",
16 "typings": "typings install",
17 "pretest": "npm run clean && npm run compile",
18 "test": "npm run testonly --",
19 "posttest": "npm run lint",
20 "lint": "tslint $(find src | grep ts$)",
21 "watch": "tsc -w",
22 "testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js",
23 "coverage": "istanbul cover _mocha -- --reporter dot --full-trace ./dist/test/tests.js",
24 "postcoverage": "remap-istanbul --input coverage/coverage.json --type lcovonly --output coverage/lcov.info",
25 "prepublishOnly": "npm run compile",
26 "prerelease": "npm test",
27 "prettier": "prettier --trailing-comma all --single-quote --write 'src/**/*.ts'",
28 "release": "standard-version"
29 },
30 "repository": {
31 "type": "git",
32 "url": "git+https://github.com/apollostack/graphql-tools.git"
33 },
34 "keywords": [
35 "GraphQL",
36 "Apollo",
37 "JavaScript",
38 "TypeScript",
39 "Mock",
40 "Schema",
41 "Schema Language",
42 "Tools"
43 ],
44 "author": "Jonas Helfer <jonas@helfer.email>",
45 "license": "MIT",
46 "bugs": {
47 "url": "https://github.com/apollostack/graphql-tools/issues"
48 },
49 "homepage": "https://github.com/apollostack/graphql-tools#readme",
50 "dependencies": {
51 "apollo-link": "~1.1.0",
52 "apollo-utilities": "^1.0.1",
53 "deprecated-decorator": "^0.1.6",
54 "iterall": "^1.1.3",
55 "uuid": "^3.1.0"
56 },
57 "peerDependencies": {
58 "graphql": "^0.12.0 || ^0.13.0"
59 },
60 "devDependencies": {
61 "@types/chai": "4.0.10",
62 "@types/graphql": "0.11.7",
63 "@types/mocha": "^2.2.44",
64 "@types/node": "^8.0.47",
65 "@types/uuid": "^3.4.3",
66 "@types/zen-observable": "^0.5.3",
67 "body-parser": "^1.18.2",
68 "chai": "^4.1.2",
69 "express": "^4.16.2",
70 "graphql": "^0.13.0",
71 "graphql-subscriptions": "^0.5.7",
72 "graphql-type-json": "^0.1.4",
73 "istanbul": "^0.4.5",
74 "mocha": "^4.0.1",
75 "prettier": "^1.7.4",
76 "remap-istanbul": "0.9.6",
77 "rimraf": "^2.6.2",
78 "source-map-support": "^0.5.0",
79 "tslint": "^5.8.0",
80 "typescript": "2.6.2"
81 }
82}