forked from remorses/genql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
102 lines (102 loc) · 2.73 KB
/
package.json
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
{
"name": "@genql/cli",
"version": "6.3.2",
"description": "Generate a TypeScript SDK for any GraphQl API",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"homepage": "https://genql.dev",
"repository": {
"url": "https://github.com/remorses/genql"
},
"mocha": {
"require": "tests/init.js",
"spec": "tests/**.ts",
"timeout": 9999999999
},
"bin": {
"genql": "./dist/cli.js"
},
"files": [
"dist",
"src",
"README.md"
],
"scripts": {
"start": "tsdx watch",
"prepublishOnly": "pnpm build",
"build": "cp ../README.md ./README.md && rm -rf dist esm *.tsbuildinfo && tsc",
"test": "jest",
"compile": "sucrase -q ./src -d ./dist --transforms typescript,imports",
"watch": "tsc -w"
},
"keywords": [
"genql",
"graphql",
"sdk",
"typescript"
],
"author": "Tommaso De Rossi, morse <beats.by.morse@gmail.com>",
"license": "MIT",
"devDependencies": {
"@sucrase/jest-plugin": "^3.0.0",
"@types/common-tags": "^1.8.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.2.3",
"@types/lodash": "^4.14.190",
"@types/mkdirp": "^1.0.2",
"@types/node": "^18.11.9",
"@types/prettier": "^2.7.1",
"@types/rimraf": "^3.0.2",
"@types/yargs": "^15.0.5",
"common-tags": "^1.8.2",
"dotenv": "^16.0.3",
"jest": "^29.3.1",
"pretty-quick": "^3.1.3",
"sucrase": "^3.29.0",
"ts-jest": "^29.0.3"
},
"dependencies": {
"@graphql-tools/graphql-file-loader": "^7.5.17",
"@graphql-tools/load": "^7.8.14",
"fs-extra": "^10.1.0",
"graphql": "^16.6.0",
"kleur": "^4.1.5",
"listr2": "^6.3.1",
"lodash": "^4.17.21",
"mkdirp": "^0.5.1",
"native-fetch": "^4.0.2",
"prettier": "^2.8.0",
"qs": "^6.11.0",
"rimraf": "^2.6.3",
"undici": "^5.22.0",
"yargs": "^15.3.1"
},
"jest": {
"transform": {
".(js|jsx|ts|tsx)": "@sucrase/jest-plugin"
},
"roots": [
"<rootDir>/src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.tsx?$",
"testEnvironment": "node",
"collectCoverageFrom": [
"src/**/*.ts",
"!**/node_modules/**",
"!src/_old/**",
"!**/*.case.ts",
"!src/testHelpers/**/*.ts"
],
"coverageReporters": [
"text"
]
}
}