UNPKG

2.66 kBJSONView Raw
1{
2 "name": "graphql-code-generator",
3 "version": "0.19.0-alpha.dd5bacfd",
4 "license": "MIT",
5 "bin": {
6 "gql-gen": "dist/commonjs/cli.js"
7 },
8 "repository": {
9 "type": "git",
10 "url": "git+https://github.com/dotansimha/graphql-code-generator.git"
11 },
12 "scripts": {
13 "clean": "rimraf ./dist",
14 "lint": "tslint src/**/*.ts",
15 "prebuild": "yarn clean",
16 "build": "tsc -m esnext --outDir dist/esnext && tsc -m commonjs --outDir dist/commonjs",
17 "test": "jest --config ../../jest.config.js"
18 },
19 "keywords": [
20 "gql",
21 "generator",
22 "code",
23 "types",
24 "interfaces",
25 "graphql",
26 "codegen",
27 "apollo",
28 "node",
29 "typescript",
30 "ts",
31 "flow",
32 "types",
33 "d.ts",
34 "typings"
35 ],
36 "author": "Dotan Simha <dotansimha@gmail.com>",
37 "bugs": {
38 "url": "https://github.com/dotansimha/graphql-codegen/issues"
39 },
40 "homepage": "https://github.com/dotansimha/graphql-codegen#readme",
41 "peerDependencies": {
42 "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
43 },
44 "dependencies": {
45 "@types/babylon": "6.16.5",
46 "@types/is-glob": "4.0.0",
47 "@types/mkdirp": "0.5.2",
48 "@types/prettier": "1.16.1",
49 "@types/valid-url": "1.0.2",
50 "babel-types": "7.0.0-beta.3",
51 "babylon": "7.0.0-beta.47",
52 "chalk": "2.4.2",
53 "change-case": "3.1.0",
54 "chokidar": "2.1.2",
55 "commander": "2.19.0",
56 "common-tags": "1.8.0",
57 "detect-indent": "5.0.0",
58 "glob": "7.1.3",
59 "graphql-codegen-core": "0.19.0-alpha.dd5bacfd",
60 "graphql-codegen-plugin-helpers": "0.19.0-alpha.dd5bacfd",
61 "graphql-config": "2.2.1",
62 "graphql-import": "0.7.1",
63 "graphql-tag-pluck": "0.7.0",
64 "graphql-toolkit": "0.2.6",
65 "graphql-tools": "4.0.4",
66 "indent-string": "3.2.0",
67 "inquirer": "6.2.2",
68 "is-glob": "4.0.0",
69 "is-valid-path": "0.1.1",
70 "js-yaml": "3.12.2",
71 "json-to-pretty-yaml": "1.2.2",
72 "listr": "0.14.3",
73 "listr-update-renderer": "0.5.0",
74 "log-symbols": "2.2.0",
75 "log-update": "3.1.0",
76 "mkdirp": "0.5.1",
77 "prettier": "1.16.4",
78 "request": "2.88.0",
79 "ts-log": "2.1.4",
80 "tslib": "1.9.3",
81 "valid-url": "1.0.9"
82 },
83 "devDependencies": {
84 "@types/chokidar": "1.7.5",
85 "@types/detect-indent": "5.0.0",
86 "@types/inquirer": "0.0.44",
87 "@types/js-yaml": "3.12.0",
88 "@types/listr": "0.13.0",
89 "@types/log-symbols": "2.0.0",
90 "bdd-stdin": "0.2.0",
91 "ts-jest": "24.0.0"
92 },
93 "main": "dist/commonjs/index.js",
94 "module": "dist/esnext/index.js",
95 "typings": "dist/esnext/index.d.ts",
96 "typescript": {
97 "definition": "dist/esnext/index.d.ts"
98 }
99}