-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.18 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
{
"name": "graphql-julia-codegen",
"description": "Generate Julia Types from GraphQL operations/schema",
"version": "0.0.10",
"author": "Mark Halonen",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/laurium-labs/graphql-julia-codegen"
},
"homepage": "https://github.com/laurium-labs/graphql-julia-codegen",
"bugs": "https://github.com/laurium-labs/graphql-julia-codegen/issues",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=6"
},
"dependencies": {
"@oclif/command": "1.8.0",
"@oclif/config": "1.17.0",
"@oclif/errors": "1.3.4",
"@oclif/parser": "3.8.5",
"@oclif/plugin-autocomplete": "0.3.0",
"@oclif/plugin-help": "2.2.3",
"@oclif/plugin-not-found": "1.2.4",
"@oclif/plugin-plugins": "1.10.0",
"@oclif/plugin-warn-if-update-available": "1.7.0",
"@types/gaze": "^1.1.0",
"apollo": "^2.32.5",
"apollo-codegen-core": "0.39.3",
"apollo-language-server": "1.25.2",
"common-tags": "^1.5.1",
"gaze": "^1.1.3",
"inflected": "^2.0.3",
"jest": "^26.6.3",
"path": "^0.12.7",
"ts-jest": "^26.5.4"
},
"devDependencies": {
"@types/inflected": "1.1.29",
"@types/jest": "24.9.1",
"@types/lodash": "4.14.168",
"@types/lodash.debounce": "4.0.6",
"graphql": "14.0.2 - 14.2.0 || ^14.3.1 || ^15.0.0",
"typescript": "4.2.3"
},
"scripts": {
"test": "jest",
"prepack": "rm -rf lib && tsc -b && oclif-dev readme"
},
"files": [
"/bin",
"/lib"
],
"oclif": {
"bin": "graphql-julia-codegen"
},
"bin": {
"graphql-julia-codegen": "./bin/run"
},
"jest": {
"preset": "ts-jest",
"transformIgnorePatterns": [
"/node_modules/"
],
"testEnvironment": "node",
"testMatch": [
"**/__tests__/*.(js|ts)"
],
"testPathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/lib/",
"<rootDir>/test/fixtures/",
"<rootDir>/test/test-utils"
],
"moduleFileExtensions": [
"ts",
"js"
],
"globals": {
"ts-jest": {
"tsConfig": "<rootDir>/tsconfig.test.json",
"diagnostics": false
}
}
}
}