UNPKG

2.19 kBJSONView Raw
1{
2 "name": "graphql-code-generator",
3 "version": "0.9.0-alpha.ebd3e3b5",
4 "license": "MIT",
5 "bin": {
6 "gql-gen": "dist/index.js"
7 },
8 "repository": {
9 "type": "git",
10 "url": "git+https://github.com/dotansimha/graphql-codegen.git"
11 },
12 "scripts": {
13 "clean": "rimraf ./dist",
14 "lint": "tslint src/**/*.ts",
15 "prebuild": "npm run clean && npm run lint",
16 "build": "tsc",
17 "prestart": "npm run build",
18 "start": "cd dist && node gql-gen.js",
19 "debug": "cd dist && node --inspect --debug-brk gql-gen.js",
20 "test": "jest --no-cache --verbose --runInBand"
21 },
22 "keywords": [
23 "gql",
24 "generator",
25 "code",
26 "types",
27 "interfaces",
28 "graphql",
29 "codegen",
30 "apollo",
31 "node",
32 "typescript",
33 "ts",
34 "flow",
35 "types",
36 "d.ts",
37 "typings"
38 ],
39 "author": "Dotan Simha <dotansimha@gmail.com>",
40 "bugs": {
41 "url": "https://github.com/dotansimha/graphql-codegen/issues"
42 },
43 "homepage": "https://github.com/dotansimha/graphql-codegen#readme",
44 "jest": {
45 "verbose": true,
46 "collectCoverage": true,
47 "collectCoverageFrom": [
48 "src/**/*.ts"
49 ],
50 "coverageDirectory": "./tests/coverage",
51 "coveragePathIgnorePatterns": [
52 "/node_modules/",
53 ".*?handlebars-helpers.*?",
54 "src/index.ts",
55 "src/types.ts"
56 ],
57 "moduleFileExtensions": [
58 "ts",
59 "tsx",
60 "js"
61 ],
62 "transform": {
63 "^.+\\.(ts|tsx)$": "<rootDir>/tests/jest.typescript.js"
64 },
65 "testRegex": "tests/.*\\.ts$",
66 "testEnvironment": "node"
67 },
68 "devDependencies": {
69 "@types/commander": "^2.9.1",
70 "@types/glob": "^5.0.30",
71 "@types/jest": "^20.0.2",
72 "@types/mkdirp": "^0.3.29",
73 "@types/node": "7",
74 "@types/request": "^0.0.45",
75 "graphql-tag": "^2.4.2",
76 "jest": "^20.0.4",
77 "rimraf": "^2.6.1",
78 "tslint": "^5.4.3",
79 "typescript": "^2.4.1"
80 },
81 "dependencies": {
82 "commander": "^2.11.0",
83 "glob": "^7.1.2",
84 "graphql-codegen-compiler": "0.9.0-alpha.ebd3e3b5",
85 "graphql-codegen-core": "0.9.0-alpha.ebd3e3b5",
86 "graphql-codegen-generators": "0.9.0-alpha.ebd3e3b5",
87 "mkdirp": "^0.5.1",
88 "request": "^2.81.0"
89 }
90}