-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.79 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
{
"name": "@scaldwell77/aws-signed-fetch",
"version": "3.0.1",
"description": "An implementation of fetch that adds AWS signature headers to the request.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/stevecaldwell77/aws-signed-fetch-js",
"scripts": {
"build": "rimraf dist && tsc",
"test": "pnpm run build && ava",
"prepare": "husky",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write ."
},
"keywords": [],
"license": "MIT",
"type": "module",
"prettier": {
"singleQuote": true,
"tabWidth": 4
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@aws-sdk/types": "^3.535.0",
"@types/node": "^20.11.30",
"ava": "^6.1.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"typescript": "^5.4.3",
"typescript-eslint": "^7.3.1"
},
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"!**/*.spec.*",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"dependencies": {
"@aws-crypto/sha256-js": "^5.2.0",
"@aws-sdk/credential-provider-node": "^3.540.0",
"@smithy/config-resolver": "^2.2.0",
"@smithy/node-config-provider": "^2.3.0",
"@smithy/protocol-http": "^3.3.0",
"@smithy/signature-v4": "^2.2.0"
},
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
}
}
}