-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
87 lines (87 loc) · 2.09 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
77
78
79
80
81
82
83
84
85
86
87
{
"name": "aws4-axios",
"version": "0.0.0-development",
"description": "Axios request interceptor for signing requests with AWSv4",
"author": "James Bourne",
"repository": {
"type": "git",
"url": "https://github.com/jamesmbourne/aws4-axios.git"
},
"files": [
"dist"
],
"license": "MIT",
"homepage": "https://github.com/jamesmbourne/aws4-axios",
"bugs": {
"url": "https://github.com/jamesmbourne/aws4-axios/issues"
},
"keywords": [
"aws4",
"awsv4",
"signature",
"axios",
"interceptor"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"test-it": "jest --config jest.config.it.js",
"test-it:deploy": "cd src/__tests__ && serverless deploy",
"prepublishOnly": "npm run build",
"semantic-release": "semantic-release",
"lint:eslint": "eslint . --cache --ext .ts,.tsx",
"lint:prettier": "prettier --check src/**/*.ts",
"lint": "run-s lint:*"
},
"devDependencies": {
"@aws-sdk/client-cloudformation": "^3.4.1",
"@aws-sdk/client-sts": "^3.4.1",
"@smithy/smithy-client": "^3.1.1",
"@types/aws4": "^1.11.2",
"@types/jest": "^29.0.0",
"@types/node": "^22.0.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"axios": "^1.6.7",
"axios-mock-adapter": "^2.0.0",
"eslint": "^8.0.0",
"eslint-config-prettier": "^9.0.0",
"husky": "^9.0.0",
"jest": "^29.0.0",
"lint-staged": "^15.0.0",
"nock": "^13.3.0",
"npm-run-all2": "^7.0.0",
"prettier": "^3.0.0",
"semantic-release": "^24.0.0",
"serverless": "^4.0.0",
"ts-jest": "^29.0.0",
"typescript": "^5.0.0",
"zod": "^3.21.4"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.4.1",
"aws4": "^1.12.0"
},
"peerDependencies": {
"axios": ">=1.6.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"engines": {
"node": ">=16"
},
"workspaces": [
"infra"
]
}