forked from Mike-Gibson/mock-apollo-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.09 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
{
"name": "mock-apollo-client",
"version": "1.0.0",
"description": "Library to help unit testing when using apollo-client",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && tsc",
"test": "jest",
"test:watch": "jest --watch",
"deploy": "npm run test && npm run build && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mike-gibson/mock-apollo-client.git"
},
"keywords": [
"apollo-client",
"graphql",
"mock",
"test",
"testing"
],
"author": "mike-gibson",
"license": "MIT",
"bugs": {
"url": "https://github.com/mike-gibson/mock-apollo-client/issues"
},
"homepage": "https://github.com/mike-gibson/mock-apollo-client#readme",
"dependencies": {},
"devDependencies": {
"@apollo/client": "^3.1.3",
"@types/jest": "^26.0.10",
"@types/node": "^14.6.0",
"graphql": "^15.3.0",
"jest": "^26.4.1",
"ts-jest": "^26.2.0",
"typescript": "^3.9.7"
},
"peerDependencies": {
"@apollo/client": "^3.0.0"
},
"files": [
"dist/**/*"
]
}