1 | {
|
2 | "name": "graphql-code-generator",
|
3 | "version": "0.13.0-alpha.576fc71f",
|
4 | "license": "MIT",
|
5 | "bin": {
|
6 | "gql-gen": "dist/cli.js"
|
7 | },
|
8 | "repository": {
|
9 | "type": "git",
|
10 | "url": "git+https://github.com/dotansimha/graphql-codegen.git"
|
11 | },
|
12 | "scripts": {
|
13 | "clean": "rimraf ./dist",
|
14 | "lint": "tslint src/**/*.ts",
|
15 | "prebuild": "yarn clean && yarn lint",
|
16 | "build": "tsc",
|
17 | "prestart": "yarn build",
|
18 | "start": "cd dist && node index.js",
|
19 | "debug": "cd dist && node --inspect --debug-brk index.js",
|
20 | "test": "jest --no-cache --verbose --runInBand"
|
21 | },
|
22 | "keywords": [
|
23 | "gql",
|
24 | "generator",
|
25 | "code",
|
26 | "types",
|
27 | "interfaces",
|
28 | "graphql",
|
29 | "codegen",
|
30 | "apollo",
|
31 | "node",
|
32 | "typescript",
|
33 | "ts",
|
34 | "flow",
|
35 | "types",
|
36 | "d.ts",
|
37 | "typings"
|
38 | ],
|
39 | "author": "Dotan Simha <dotansimha@gmail.com>",
|
40 | "bugs": {
|
41 | "url": "https://github.com/dotansimha/graphql-codegen/issues"
|
42 | },
|
43 | "homepage": "https://github.com/dotansimha/graphql-codegen#readme",
|
44 | "jest": {
|
45 | "verbose": true,
|
46 | "collectCoverage": true,
|
47 | "collectCoverageFrom": [
|
48 | "src/**/*.ts"
|
49 | ],
|
50 | "coverageDirectory": "./tests/coverage",
|
51 | "coveragePathIgnorePatterns": [
|
52 | "/node_modules/",
|
53 | ".*?handlebars-helpers.*?",
|
54 | "src/index.ts",
|
55 | "src/types.ts"
|
56 | ],
|
57 | "moduleFileExtensions": [
|
58 | "ts",
|
59 | "tsx",
|
60 | "js"
|
61 | ],
|
62 | "transform": {
|
63 | "^.+\\.(ts|tsx)$": "<rootDir>/tests/jest.typescript.js"
|
64 | },
|
65 | "testRegex": "tests/.*\\.spec.ts$",
|
66 | "testEnvironment": "node"
|
67 | },
|
68 | "peerDependencies": {
|
69 | "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
|
70 | },
|
71 | "dependencies": {
|
72 | "@graphql-modules/epoxy": "0.1.9",
|
73 | "@types/babylon": "6.16.3",
|
74 | "@types/is-glob": "4.0.0",
|
75 | "@types/prettier": "1.13.2",
|
76 | "@types/valid-url": "1.0.2",
|
77 | "babel-types": "7.0.0-beta.3",
|
78 | "babylon": "7.0.0-beta.47",
|
79 | "commander": "2.19.0",
|
80 | "fb-watchman": "2.0.0",
|
81 | "glob": "7.1.3",
|
82 | "graphql-codegen-compiler": "0.13.0-alpha.576fc71f",
|
83 | "graphql-codegen-core": "0.13.0-alpha.576fc71f",
|
84 | "graphql-config": "2.2.1",
|
85 | "graphql-import": "0.7.1",
|
86 | "is-glob": "4.0.0",
|
87 | "is-valid-path": "0.1.1",
|
88 | "mkdirp": "0.5.1",
|
89 | "ora": "3.0.0",
|
90 | "pify": "4.0.1",
|
91 | "prettier": "1.14.3",
|
92 | "request": "2.88.0",
|
93 | "valid-url": "1.0.9"
|
94 | },
|
95 | "devDependencies": {
|
96 | "@types/fb-watchman": "2.0.0",
|
97 | "@types/ora": "1.3.4",
|
98 | "@types/pify": "3.0.2",
|
99 | "graphql-codegen-typescript-template": "0.13.0-alpha.576fc71f",
|
100 | "graphql-codegen-typescript-template-multiple": "0.9.4"
|
101 | },
|
102 | "main": "./dist/index.js",
|
103 | "typings": "./dist/index.d.ts",
|
104 | "typescript": {
|
105 | "definition": "./dist/index.d.ts"
|
106 | }
|
107 | }
|