-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.45 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
{
"name": "apollo-link-printer",
"version": "1.0.2",
"description": "Pretty logger of Apollo GraphQL network operations packaged in a Apollo link",
"type": "module",
"scripts": {
"test": "jest",
"build": "tsc",
"watch": "tsc -w",
"deploy": "./scripts/deploy.sh"
},
"main": "lib/index.js",
"module": "lib/index.js",
"jsnext:main": "lib/index.js",
"typings": "lib/printerLink.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/egorlem/apollo-link-printer.git"
},
"keywords": [
"graphql",
"apollo",
"apollo-link"
],
"author": "Egor Lem",
"license": "MIT",
"bugs": {
"url": "https://github.com/egorlem/apollo-link-printer/issues"
},
"homepage": "https://github.com/egorlem/apollo-link-printer#readme",
"peerDependencies": {
"@apollo/client": "^3.0.0"
},
"devDependencies": {
"@apollo/client": "^3.11.8",
"@babel/core": "^7.25.2",
"@babel/polyfill": "^7.12.1",
"@babel/preset-env": "^7.25.4",
"@babel/preset-typescript": "^7.24.7",
"@babel/runtime": "^7.25.6",
"@babel/runtime-corejs3": "^7.25.6",
"@types/jest": "^29.5.13",
"babel-jest": "^29.7.0",
"jest": "^29.7.0",
"typescript": "^5.6.2",
"@eslint/js": "^9.11.1",
"eslint": "^9.11.1",
"globals": "^15.9.0",
"typescript-eslint": "^8.8.0"
},
"jest": {
"testEnvironment": "node",
"transformIgnorePatterns": [
"node_modules/(?!variables/.*)"
]
}
}