-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
76 lines (76 loc) · 1.85 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
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "apollo-server-cache-dynamodb",
"version": "2.0.1",
"description": "DynamoDB implementation of KeyValueCache for apollo-server-caching",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/**/*"
],
"engines": {
"node": ">=6"
},
"scripts": {
"test": "jest",
"build": "tsc",
"lint": "eslint",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run build && git add -A dist",
"postversion": "git push && git push --tags"
},
"repository": {
"type": "git",
"url": "https://github.com/hotgazpacho/apollo-server-cache-dynamodb"
},
"keywords": [
"apollo-server-caching",
"apollo",
"dynamodb"
],
"author": "Will Green",
"license": "MIT",
"bugs": {
"url": "https://github.com/hotgazpacho/apollo-server-cache-dynamodb/issues"
},
"homepage": "https://github.com/hotgazpacho/apollo-server-cache-dynamodb#readme",
"dependencies": {
"@apollo/utils.keyvaluecache": "^2.1.0"
},
"peerDependencies": {
"aws-sdk": "2"
},
"devDependencies": {
"@types/jest": "^29.2.3",
"@types/node": "^16.18.1",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"aws-sdk": "2",
"aws-sdk-mock": "^5.8.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-jsdoc": "^39.6.4",
"eslint-plugin-prefer-arrow": "^1.2.3",
"jest": "^29.0.3",
"jest-date-mock": "^1.0.8",
"jest-junit": "^15.0.0",
"prettier": "^2.8.0",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3"
},
"jest": {
"roots": [
"<rootDir>/src"
],
"preset": "ts-jest",
"reporters": [
"default",
"jest-junit"
],
"setupFiles": [
"jest-date-mock"
],
"testEnvironment": "node"
}
}