forked from helfer/apollo-link-serialize
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.3 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
{
"name": "apollo-link-serialize",
"version": "3.1.2",
"description": "A link that serializes requests by key, making sure that they execute in the exact order submitted",
"dependencies": {
"@apollo/client": "^3.3.19",
"zen-observable-ts": "^0.8.11"
},
"devDependencies": {
"@types/graphql": "^0.11.7",
"@types/jest": "^20.0.8",
"@types/node": "^8.0.26",
"codecov": "^2.3.0",
"graphql": "^0.11.7",
"nyc": "^11.2.1",
"react-scripts-ts": "^2.6.0",
"ts-jest": "^20.0.14",
"tslint": "^5.8.0",
"typescript": "^4.3.2"
},
"main": "build/dist/index.js",
"module": "build/dist/index.js",
"repository": {
"type": "git",
"url": "helfer/apollo-link-serialize"
},
"jsnext:main": "build/dist/index.js",
"typings": "build/dist/index.d.ts",
"scripts": {
"build": "tsc",
"lint": "tslint src/*.ts* src/**/*.ts*",
"test": "react-scripts-ts test --coverage --collectCoverageFrom=src/**/*.ts* --collectCoverageFrom=!src/index.ts --collectCoverageFrom=!src/TestUtils.ts && yarn run lint",
"testonly": "react-scripts-ts test --env=jsdom",
"coverage": "codecov -f coverage/*.json"
},
"keywords": [
"graphql",
"apollo",
"apollo-link",
"serialize",
"queue"
],
"author": "Jonas Helfer <[email protected]>",
"license": "MIT"
}