-
Notifications
You must be signed in to change notification settings - Fork 470
/
package.json
53 lines (53 loc) · 1.32 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
{
"name": "apollo-codegen-typescript",
"description": "TypeScript generator module for Apollo Codegen",
"version": "0.40.4",
"author": "Apollo GraphQL <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/apollographql/apollo-tooling.git"
},
"homepage": "https://github.com/apollographql/apollo-tooling",
"bugs": "https://github.com/apollographql/apollo-tooling/issues",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=8",
"npm": ">=6"
},
"dependencies": {
"@babel/generator": "7.14.8",
"@babel/types": "7.15.0",
"apollo-codegen-core": "file:../apollo-codegen-core",
"change-case": "^4.0.0",
"common-tags": "^1.5.1",
"inflected": "^2.0.3"
},
"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
}
}
}
}