UNPKG

1.24 kBJSONView Raw
1{
2 "name": "graphql-codegen-flow-documents",
3 "version": "0.18.2",
4 "description": "GraphQL Code Generator plugin for generating Flow types for GraphQL docuemnts (query/mutation/subscription/fragment)",
5 "repository": "git@github.com:dotansimha/graphql-code-generator.git",
6 "license": "MIT",
7 "scripts": {
8 "prepublishOnly": "yarn build",
9 "build": "codegen-templates-scripts build",
10 "pretest": "yarn build",
11 "test": "codegen-templates-scripts test"
12 },
13 "dependencies": {
14 "graphql-codegen-core": "0.18.2",
15 "graphql-codegen-flow": "0.18.2",
16 "graphql-codegen-plugin-helpers": "0.18.2"
17 },
18 "devDependencies": {
19 "codegen-templates-scripts": "0.18.2",
20 "flow-bin": "0.94.0",
21 "flow-parser": "0.94.0",
22 "graphql": "14.1.1"
23 },
24 "main": "./dist/index.js",
25 "typings": "dist/index.d.ts",
26 "typescript": {
27 "definition": "dist/index.d.ts"
28 },
29 "jest": {
30 "globals": {
31 "ts-jest": {
32 "enableTsDiagnostics": false
33 }
34 },
35 "transform": {
36 "^.+\\.tsx?$": "ts-jest"
37 },
38 "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
39 "moduleFileExtensions": [
40 "ts",
41 "tsx",
42 "js",
43 "jsx",
44 "json",
45 "node"
46 ]
47 }
48}