UNPKG

1.88 kBJSONView Raw
1{
2 "name": "graphql-codegen-core",
3 "version": "0.17.0-alpha.8e787c93",
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 "dependencies": {
63 "chalk": "2.4.2",
64 "change-case": "3.1.0",
65 "common-tags": "1.8.0",
66 "graphql-tag": "2.10.1",
67 "graphql-toolkit": "0.0.5",
68 "graphql-tools": "4.0.4",
69 "ts-log": "2.1.4",
70 "winston": "3.2.1"
71 },
72 "peerDependencies": {
73 "graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0"
74 },
75 "typings": "dist/index.d.ts",
76 "typescript": {
77 "definition": "dist/index.d.ts"
78 }
79}