UNPKG

1.9 kBJSONView Raw
1{
2 "name": "graphql-codegen-core",
3 "version": "0.13.0-alpha.ca932b4e",
4 "description": "GraphQL types and code generator based on schema",
5 "main": "dist/index.js",
6 "scripts": {
7 "clean": "rimraf ./dist",
8 "lint": "tslint src/**/*.ts",
9 "prebuild": "yarn clean && yarn lint",
10 "build": "tsc",
11 "prestart": "yarn build",
12 "start": "cd dist && node gql-gen.js",
13 "debug": "cd dist && node --inspect --debug-brk gql-gen.js",
14 "test": "jest --no-cache --verbose --runInBand"
15 },
16 "repository": {
17 "type": "git",
18 "url": "git+https://github.com/dotansimha/graphql-codegen.git"
19 },
20 "keywords": [
21 "gql",
22 "generator",
23 "code",
24 "types",
25 "interfaces",
26 "graphql",
27 "codegen",
28 "apollo",
29 "node",
30 "typescript",
31 "ts",
32 "flow",
33 "types",
34 "d.ts",
35 "typings"
36 ],
37 "author": "Dotan Simha <dotansimha@gmail.com>",
38 "license": "MIT",
39 "bugs": {
40 "url": "https://github.com/dotansimha/graphql-codegen/issues"
41 },
42 "homepage": "https://github.com/dotansimha/graphql-codegen#readme",
43 "config": {
44 "commitizen": {
45 "path": "./node_modules/cz-conventional-changelog"
46 }
47 },
48 "jest": {
49 "transform": {
50 "^.+\\.tsx?$": "ts-jest"
51 },
52 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
53 "moduleFileExtensions": [
54 "ts",
55 "tsx",
56 "js",
57 "jsx",
58 "json",
59 "node"
60 ]
61 },
62 "devDependencies": {
63 "@types/chalk": "2.2.0"
64 },
65 "dependencies": {
66 "chalk": "2.4.1",
67 "change-case": "3.0.2",
68 "common-tags": "1.8.0",
69 "graphql-tag": "2.10.0",
70 "graphql-tools": "4.0.3",
71 "ts-log": "2.1.3",
72 "winston": "3.1.0"
73 },
74 "peerDependencies": {
75 "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
76 },
77 "typings": "dist/index.d.ts",
78 "typescript": {
79 "definition": "dist/index.d.ts"
80 }
81}