-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
91 lines (91 loc) · 2.12 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "graphql-reshape",
"description": "Tools for modifying graphql schema",
"private": true,
"license": "(MIT OR Apache-2.0)",
"repository": "https://github.com/zieka/graphql-reshape",
"author": {
"name": "Kyle Scully",
"url": "https://github.com/zieka"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "lerna run build",
"check-types": "lerna run check-types",
"prettier-check": "prettier --config package.json --list-different '{,**/}*.{js,ts,json,graphql}'",
"prettier-format": "prettier --config package.json --write '{,**/}*.{js,ts,json,graphql}'",
"publish": "npm run build && lerna publish",
"test": "jest",
"test:ci": "jest --ci --runInBand --coverage --bail"
},
"devDependencies": {
"@graphql-reshape/directives": "file:packages/directives",
"@graphql-reshape/transformers": "file:packages/transformers",
"@graphql-reshape/scalars": "file:packages/scalars",
"@types/inquirer": "7.3.1",
"@types/jest": "26.0.14",
"@types/node": "11.11.3",
"create-ts-index": "1.13.6",
"cz-conventional-changelog": "3.3.0",
"graphql": "15.3.0",
"graphql-tools": "6.2.4",
"jest": "26.4.2",
"jest-cli": "26.4.2",
"jest-junit-reporter": "1.1.0",
"lerna": "3.22.1",
"prettier": "2.1.2",
"ts-jest": "26.4.1",
"typescript": "4.0.3"
},
"resolutions": {
"tar": "4.4.8"
},
"prettier": {
"arrowParens": "always",
"bracketSpacing": true,
"jsxBracketSameLine": true,
"printWidth": 120,
"semi": true,
"singleQuote": true,
"tabWidth": 2,
"trailingComma": "none",
"useTabs": false
},
"jest": {
"coverageDirectory": "<rootDir>/coverage",
"collectCoverageFrom": [
"packages/**/*.js",
"packages/**/*.ts"
],
"coveragePathIgnorePatterns": [
".*\\.d\\.ts",
"/node_modules/",
"/dist/",
"/coverage/",
"index.ts",
"constants.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testMatch": [
"**/*\\.test\\.(t|j)s?(x)"
],
"moduleFileExtensions": [
"ts",
"js",
"json"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/dist/"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}