-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
67 lines (67 loc) · 1.77 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
{
"name": "graphql-request-appsync-iam",
"description": "Extension of graphql-request that can be used to make calls to an AppSync API using IAM authorization.",
"version": "3.0.0",
"ava": {
"typescript": {
"rewritePaths": {
"src/": "dist/"
},
"compile": false
}
},
"dependencies": {
"@scaldwell77/aws-signed-fetch": "^3.0.1",
"graphql-request": "^6.1.0",
"lodash-es": "^4.17.21"
},
"devDependencies": {
"@ava/typescript": "^4.1.0",
"@aws-sdk/types": "^3.535.0",
"@types/lodash-es": "^4.17.12",
"@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.4.0"
},
"engines": {
"node": ">=18"
},
"files": [
"dist",
"!**/*.spec.*",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"keywords": [],
"license": "MIT",
"lint-staged": {
"*.js": "eslint --cache --fix",
"*.{js,css,md}": "prettier --write"
},
"main": "dist/index.js",
"peerDependencies": {
"graphql": "14 - 16"
},
"prettier": {
"singleQuote": true,
"tabWidth": 4
},
"repository": "https://github.com/stevecaldwell77/graphql-request-appsync-iam-js",
"scripts": {
"build": "rimraf dist && tsc",
"format": "prettier --write .",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"prepare": "husky",
"test": "pnpm run build && ava"
},
"type": "module",
"types": "dist/index.d.ts"
}