-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
64 lines (64 loc) · 1.43 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
{
"name": "apollo-link-timeout",
"version": "4.0.0",
"description": "Abort requests that take longer than a specified timeout period",
"peerDependencies": {
"@apollo/client": "^3.0.0"
},
"devDependencies": {
"@apollo/client": "^3.1.3",
"@types/jest": "^23.1.1",
"@types/node": "^10.3.4",
"graphql": "^15.3.0",
"graphql-tag": "^2.11.0",
"jest": "^23.1.0",
"react": "^16.13.1",
"ts-jest": "^22.4.6",
"ts-loader": "^4.4.1",
"tslint": "^5.8.0",
"typescript": "^2.9.2"
},
"main": "lib/timeoutLink.js",
"types": "lib/timeoutLink.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/drcallaway/apollo-link-timeout"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"scripts": {
"build": "tsc",
"lint": "tslint src/*.ts* src/**/*.ts*",
"test": "jest",
"prepublish": "yarn lint && yarn test && yarn build",
"deploy": "yarn publish && git push"
},
"keywords": [
"graphql",
"apollo",
"apollo-link",
"timeout"
],
"author": "Dustin Callaway <[email protected]>",
"license": "MIT",
"files": [
"lib"
],
"jest": {
"transform": {
".(ts|tsx)": "ts-jest"
},
"testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"json"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/lib/"
]
}
}