forked from jamesmbourne/aws4-axios
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 2.07 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
{
"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"
},
"license": "MIT",
"homepage": "https://github.com/jamesmbourne/aws4-axios",
"bugs": {
"url": "https://github.com/jamesmbourne/aws4-axios/issues"
},
"keywords": [
"aws4",
"awsv4",
"signature",
"axios",
"interceptor"
],
"resolutions": {
"lodash": "4.17.15",
"mixin-deep": "2.0.1",
"set-value": "3.0.1",
"axios": "0.25.0"
},
"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",
"@types/jest": "^27.0.1",
"@types/node": "^14.14.21",
"@typescript-eslint/eslint-plugin": "^4.13.0",
"@typescript-eslint/parser": "^4.13.0",
"axios": "^0.25.0",
"axios-mock-adapter": "^1.20.0",
"eslint": "^7.18.0",
"eslint-config-prettier": "^8.3.0",
"husky": "^7.0.1",
"jest": "^26.6.3",
"lint-staged": "^11.1.2",
"npm-run-all": "^4.1.5",
"prettier": "^2.2.1",
"semantic-release": "^17.3.3",
"serverless": "^2.22.0",
"ts-jest": "^26.5.0",
"typescript": "^4.1.3"
},
"dependencies": {
"@aws-sdk/client-sts": "^3.4.1",
"@types/aws4": "^1.5.1",
"aws4": "^1.9.1"
},
"peerDependencies": {
"axios": ">=0.25.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --cache --fix",
"prettier --write"
]
},
"engines": {
"node": ">=12"
}
}