-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpackage.json
76 lines (76 loc) · 1.49 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
{
"name": "ibm-graphql-query-generator",
"version": "1.3.0",
"description": "Randomly generate a GraphQL query using a GraphQL schema",
"author": "Erik Wittern",
"contributors": [
"Alan Cha"
],
"repository": {
"type": "git",
"url": "https://github.com/IBM/GraphQL-Query-Generator"
},
"homepage": "https://github.com/IBM/GraphQL-Query-Generator",
"keywords": [
"ibm",
"graphql",
"query",
"schema",
"generate",
"build",
"factory",
"maker"
],
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"test": "npm run build && jest"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged"
}
},
"license": "MIT",
"devDependencies": {
"@types/graphql": "^14.5.0",
"@types/jest": "^26.0.10",
"@types/node": "^13.13.4",
"dedent": "^0.7.0",
"husky": "^4.2.5",
"jest": "^26.4.2",
"prettier": "^2.0.5",
"pretty-quick": "^2.0.1",
"ts-jest": "^26.3.0",
"typescript": "^3.8.3"
},
"peerDependencies": {
"graphql": "^14.0.2"
},
"jest": {
"testURL": "http://localhost/",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"roots": [
"test"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"merge": "^2.1.1",
"seedrandom": "^3.0.5"
},
"files": [
"lib"
]
}