-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.97 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
{
"name": "@blastorg/fastify-aws-dynamodb-cache",
"version": "1.0.0",
"description": "Package containing logic to cache endpoint responses in DynamoDB.",
"main": "./lib/index.js",
"files": [
"lib/**/*"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"pack:local": "npm run build && npm pack",
"build": "rimraf lib && tsc",
"test": "jest",
"lint": "eslint ./src --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/blastorg/fastify-aws-dynamodb-cache.git"
},
"keywords": [
"aws",
"dynamodb",
"cache",
"fastify",
"blastorg"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/blastorg/fastify-aws-dynamodb-cache/issues"
},
"homepage": "https://github.com/blastorg/fastify-aws-dynamodb-cache#readme",
"peerDependencies": {
"@aws-sdk/client-dynamodb": ">=3.0.0",
"fastify": ">=3.0"
},
"devDependencies": {
"@commitlint/cli": "^17.7.1",
"@commitlint/config-conventional": "^17.7.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.6",
"@semantic-release/release-notes-generator": "^12.0.0",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.8",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.10.0",
"@typescript-eslint/parser": "^6.10.0",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^8.49.0",
"fastify": "^4.23.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"rimraf": "^5.0.1",
"semantic-release-export-data": "^1.0.1",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@aws-sdk/client-dynamodb": ">=3.0.0",
"fastify-plugin": "^4.5.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}