This repository has been archived by the owner on Feb 1, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
59 lines (59 loc) · 1.65 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
{
"name": "apollo-server-compression-cache-wrapper",
"version": "1.1.0",
"author": "Kamil Dybicz <[email protected]>",
"description": "A compression layer for Apollo Server Caching modules.",
"license": "MIT",
"keywords": [
"apollo",
"apollo-server",
"apollo-server-cache",
"apollo-server-caching",
"zlib",
"deflate"
],
"repository": {
"type": "git",
"url": "https://github.com/kdybicz/apollo-server-compression-cache-wrapper"
},
"homepage": "https://github.com/kdybicz/apollo-server-compression-cache-wrapper#readme",
"bugs": {
"url": "https://github.com/kdybicz/apollo-server-compression-cache-wrapper/issues"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"engines": {
"node": ">=14.0.0"
},
"scripts": {
"clean": "git clean -dfqX -- ./node_modules ./lib ./tsconfig*tsbuildinfo",
"compile": "tsc --build tsconfig.json",
"precompile": "tsc --build tsconfig.json --clean",
"test": "jest --verbose",
"test:clean": "jest --clearCache",
"test:watch": "jest --verbose --watchAll",
"test:ci": "npm run coverage -- --ci --maxWorkers=2 --reporters=default --reporters=jest-junit",
"prepare": "npm run compile",
"testonly": "npm test",
"coverage": "npm test -- --coverage"
},
"dependencies": {
"@apollo/utils.keyvaluecache": "^1.0.2",
"debug": "^4.3.4"
},
"devDependencies": {
"@types/debug": "^4.1.7",
"@types/jest": "^28.1.8",
"jest": "^28.1.3",
"jest-config": "^28.1.3",
"jest-junit": "^14.0.1",
"ts-jest": "^28.0.8",
"typescript": "^4.9.4"
},
"files": [
"package.json",
"/lib",
"LICENSE",
"README.md"
]
}