forked from IngusSkaistkalns/graphql-schema-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.57 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
{
"name": "@lookback/graphql-schema-typescript",
"version": "1.6.0",
"description": "Generate TypeScript from GraphQL's schema type definitions",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": "./lib/cli.js",
"scripts": {
"pretest": "yarn build",
"test": "jest --bail",
"lint": "tslint -p tslint.json && tsc --noEmit",
"build": "del-cli \"./lib/*\" && tsc",
"prepack": "yarn lint && yarn test",
"prepublishOnly": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lookback/graphql-schema-typescript.git"
},
"keywords": [],
"author": "Jack Dang <jack.dang@itutorworld.com.au>",
"license": "MIT",
"devDependencies": {
"@graphql-tools/schema": "^8.3.1",
"@playlyfe/gql": "2.6.2",
"@types/fs-extra": "4.0.4",
"@types/graphql": "0.11.5",
"@types/jest": "21.1.5",
"@types/node": "^14.14.25",
"@types/yargs": "^15.0.0",
"del-cli": "^2.0.0",
"fs-extra": "4.0.2",
"graphql": "^16.0.0",
"jest": "^26.0.0",
"ts-jest": "^26.0.0",
"tslint": "5.8.0",
"typescript": "^4.1.3"
},
"dependencies": {
"camelcase": "^6.2.0",
"yargs": "^16.0.0"
},
"peerDependencies": {
"graphql": "^16.0.0",
"typescript": "*"
},
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./src/setupTest.ts"
],
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "/__tests__/.*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
},
"files": [
"lib"
]
}