forked from dangcuuson/graphql-schema-typescript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.4 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
{
"name": "graphql-schema-typescript",
"version": "1.2.3",
"description": "Generate TypeScript from GraphQL's schema type definitions",
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"bin": "./lib/cli.js",
"scripts": {
"pretest": "npm run build",
"test": "jest --bail",
"lint": "tslint -p tslint.json && tsc --noEmit",
"build": "rm -rf ./lib && tsc",
"prepack": "npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dangcuuson/graphql-schema-typescript.git"
},
"keywords": [],
"author": "Jack Dang <[email protected]>",
"license": "MIT",
"devDependencies": {
"@playlyfe/gql": "2.3.2",
"@types/fs-extra": "4.0.4",
"@types/graphql": "0.11.5",
"@types/jest": "21.1.5",
"@types/node": "8.0.50",
"@types/yargs": "^11.0.0",
"fs-extra": "4.0.2",
"graphql": "0.11.7",
"graphql-tools": "2.7.2",
"jest": "22.4.3",
"ts-jest": "22.4.4",
"tslint": "5.8.0",
"typescript": "2.9.2"
},
"dependencies": {
"yargs": "^11.0.0"
},
"peerDependencies": {
"graphql": "*",
"typescript": "*"
},
"jest": {
"testEnvironment": "node",
"transform": {
".(ts|tsx)": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*\\.test\\.ts$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
]
}
}