-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.69 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 1.69 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "graphql-codegen-core",
"version": "0.11.0-alpha.e73d4523",
"description": "GraphQL types and code generator based on schema",
"main": "dist/index.js",
"scripts": {
"clean": "rimraf ./dist",
"lint": "tslint src/**/*.ts",
"prebuild": "yarn clean && yarn lint",
"build": "tsc",
"prestart": "yarn build",
"start": "cd dist && node gql-gen.js",
"debug": "cd dist && node --inspect --debug-brk gql-gen.js",
"test": "jest --no-cache --verbose --runInBand"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dotansimha/graphql-codegen.git"
},
"keywords": [
"gql",
"generator",
"code",
"types",
"interfaces",
"graphql",
"codegen",
"apollo",
"node",
"typescript",
"ts",
"flow",
"types",
"d.ts",
"typings"
],
"author": "Dotan Simha <dotansimha@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/dotansimha/graphql-codegen/issues"
},
"homepage": "https://github.com/dotansimha/graphql-codegen#readme",
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"jest": {
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"graphql-tag": "2.9.2",
"graphql-tools": "3.0.5",
"winston": "2.4.3"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
}
}