-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
61 lines (61 loc) · 1.46 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
{
"name": "graphql-schema-typescript",
"version": "1.6.1",
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dangcuuson/graphql-schema-typescript.git"
},
"keywords": [],
"author": "Jack Dang <jack.dang@itutorworld.com.au>",
"license": "MIT",
"devDependencies": {
"@graphql-tools/schema": "^8.3.1",
"@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": "^5.1.0",
"fs-extra": "4.0.2",
"graphql": "^16.0.0",
"jest": "29.7.0",
"ts-jest": "29.1.1",
"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"
]
}
}