UNPKG

829 BJSONView Raw
1{
2 "name": "graphql-codegen-compiler",
3 "version": "0.9.4",
4 "description": "GraphQL code generator compiler",
5 "license": "MIT",
6 "scripts": {
7 "test": "jest",
8 "build": "tsc",
9 "prebuild": "rimraf ./dist/",
10 "lint": "tslint src/**/*.ts"
11 },
12 "dependencies": {
13 "@types/handlebars": "4.0.38",
14 "change-case": "3.0.2",
15 "common-tags": "1.8.0",
16 "graphql-codegen-core": "0.9.4",
17 "handlebars": "4.0.11",
18 "moment": "2.22.2"
19 },
20 "jest": {
21 "moduleFileExtensions": [
22 "ts",
23 "tsx",
24 "js"
25 ],
26 "transform": {
27 "^.+\\.(ts|tsx)$": "<rootDir>/tests/jest.typescript.js"
28 },
29 "testRegex": "tests/.*\\.ts$",
30 "testEnvironment": "node"
31 },
32 "typings": "dist/index.d.ts",
33 "typescript": {
34 "definition": "dist/index.d.ts"
35 },
36 "main": "./dist/index.js"
37}