UNPKG

1.6 kBJSONView Raw
1{
2 "name": "apollo-codegen-core",
3 "description": "Core generator APIs for Apollo Codegen",
4 "version": "0.35.6",
5 "author": "Apollo GraphQL <opensource@apollographql.com>",
6 "license": "MIT",
7 "repository": {
8 "type": "git",
9 "url": "git+https://github.com/apollographql/apollo-tooling.git"
10 },
11 "homepage": "https://github.com/apollographql/apollo-tooling",
12 "bugs": "https://github.com/apollographql/apollo-tooling/issues",
13 "main": "lib/index.js",
14 "types": "lib/index.d.ts",
15 "engines": {
16 "node": ">=8",
17 "npm": ">=6"
18 },
19 "dependencies": {
20 "@babel/generator": "7.6.4",
21 "@babel/parser": "^7.1.3",
22 "@babel/types": "7.6.3",
23 "apollo-env": "^0.5.1",
24 "apollo-language-server": "^1.17.0",
25 "ast-types": "^0.13.0",
26 "common-tags": "^1.5.1",
27 "recast": "^0.18.0"
28 },
29 "jest": {
30 "preset": "ts-jest",
31 "transformIgnorePatterns": [
32 "/node_modules/",
33 "/apollo-env/"
34 ],
35 "testEnvironment": "node",
36 "setupFiles": [
37 "<rootDir>/../apollo-env/lib/index.js"
38 ],
39 "setupFilesAfterEnv": [
40 "<rootDir>/test-utils/matchers.ts"
41 ],
42 "testMatch": [
43 "**/__tests__/*.(js|ts)"
44 ],
45 "testPathIgnorePatterns": [
46 "<rootDir>/node_modules/",
47 "<rootDir>/lib/",
48 "<rootDir>/test/fixtures/",
49 "<rootDir>/test/test-utils"
50 ],
51 "moduleFileExtensions": [
52 "ts",
53 "js"
54 ],
55 "globals": {
56 "ts-jest": {
57 "tsConfig": "<rootDir>/tsconfig.test.json",
58 "diagnostics": false
59 }
60 }
61 },
62 "gitHead": "f8aee537316b056501e4090a55cad5f3d0ab4704"
63}