UNPKG

1.98 kBJSONView Raw
1{
2 "name": "graphql-toolkit",
3 "version": "0.5.15",
4 "description": "A set of utils for faster development of GraphQL tools",
5 "repository": "git@github.com:dotansimha/graphql-toolkit.git",
6 "author": "Dotan Simha <dotansimha@gmail.com>",
7 "license": "MIT",
8 "scripts": {
9 "clean": "rimraf dist",
10 "build": "tsc -m esnext --outDir dist/esnext && tsc -m commonjs --outDir dist/commonjs",
11 "test": "jest --forceExit && yarn bundlesize",
12 "prepare-release": "yarn build && yarn test",
13 "release": "yarn prepare-release && npm publish",
14 "ci:release:canary": "node bump.js && npm publish --tag alpha",
15 "bundlesize": "cd bundle-test/ && yarn && yarn test"
16 },
17 "sideEffects": false,
18 "main": "dist/commonjs/index.js",
19 "module": "dist/esnext/index.js",
20 "typings": "dist/esnext/index.d.ts",
21 "typescript": {
22 "definition": "dist/esnext/index.d.ts"
23 },
24 "peerDependencies": {
25 "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0",
26 "graphql-tag-pluck": "^0.8.3"
27 },
28 "devDependencies": {
29 "graphql-type-json": "0.3.0",
30 "@types/deepmerge": "2.2.0",
31 "@types/graphql": "14.2.3",
32 "@types/is-glob": "4.0.1",
33 "@types/jest": "24.0.18",
34 "@types/lodash": "4.14.138",
35 "@types/node": "10.14.18",
36 "@types/request": "2.48.3",
37 "@types/valid-url": "1.0.2",
38 "graphql": "14.5.7",
39 "graphql-tag": "2.10.1",
40 "graphql-tag-pluck": "0.8.5",
41 "jest": "24.9.0",
42 "jest-junit": "8.0.0",
43 "rimraf": "3.0.0",
44 "semver": "6.3.0",
45 "ts-jest": "24.1.0",
46 "typescript": "3.6.3"
47 },
48 "dependencies": {
49 "@kamilkisiela/graphql-tools": "4.0.6",
50 "@types/glob": "7.1.1",
51 "aggregate-error": "3.0.0",
52 "asyncro": "^3.0.0",
53 "cross-fetch": "^3.0.4",
54 "deepmerge": "4.0.0",
55 "globby": "10.0.1",
56 "graphql-import": "0.7.1",
57 "is-glob": "4.0.1",
58 "is-valid-path": "0.1.1",
59 "lodash": "4.17.15",
60 "tslib": "^1.9.3",
61 "valid-url": "1.0.9"
62 }
63}