-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
63 lines (63 loc) · 1.35 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
{
"name": "graphql-ergonomock",
"version": "0.0.0-development",
"description": "Automatic mocking of GraphQL operations.",
"main": "dist/index.js",
"author": "Joel Marcotte",
"license": "MIT",
"keywords": [
"apollo-client",
"apollo",
"factory",
"fixture",
"graphql",
"jest",
"mock",
"MockedProvider",
"mocking",
"mocks",
"resolvers",
"test",
"testing",
"typescript"
],
"scripts": {
"test": "jest --coverage",
"build": "rimraf ./dist && tsc",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release"
},
"files": [
"dist"
],
"devDependencies": {
"@apollo/client": "3.4.8",
"@testing-library/jest-dom": "5.14.1",
"@testing-library/react": "11.2.7",
"@types/react": "17.0.18",
"@types/react-dom": "17.0.9",
"@types/seedrandom": "3.0.1",
"jest": "26.6.3",
"jest-extended": "0.11.5",
"prettier": "2.3.2",
"react": "17.0.2",
"react-dom": "17.0.2",
"semantic-release": "17.4.5",
"ts-jest": "26.5.6",
"typescript": "4.3.5"
},
"renovate": {
"extends": [
"config:js-lib"
]
},
"repository": {
"type": "git",
"url": "https://github.com/joual/graphql-ergonomock.git"
},
"dependencies": {
"fast-json-stable-stringify": "^2.1.0",
"graphql": "^15.0.0",
"seedrandom": "^3.0.5"
}
}