UNPKG

2.63 kBJSONView Raw
1{
2 "name": "graphql-code-generator",
3 "version": "0.13.0-alpha.4e397e7b",
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.6",
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.18.0",
80 "fb-watchman": "2.0.0",
81 "glob": "7.1.3",
82 "graphql-codegen-compiler": "0.13.0-alpha.4e397e7b",
83 "graphql-codegen-core": "0.13.0-alpha.4e397e7b",
84 "graphql-import": "0.7.1",
85 "is-glob": "4.0.0",
86 "is-valid-path": "0.1.1",
87 "mkdirp": "0.5.1",
88 "pify": "4.0.0",
89 "prettier": "1.14.3",
90 "request": "2.88.0",
91 "valid-url": "1.0.9"
92 },
93 "devDependencies": {
94 "@types/pify": "3.0.2",
95 "graphql-codegen-typescript-template": "0.13.0-alpha.4e397e7b",
96 "graphql-codegen-typescript-template-multiple": "0.9.4"
97 },
98 "main": "./dist/index.js",
99 "typings": "./dist/index.d.ts",
100 "typescript": {
101 "definition": "./dist/index.d.ts"
102 }
103}