-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
38 lines (38 loc) · 1.01 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
{
"name": "action-aws-apigw-oidc-request",
"version": "1.0.0",
"description": "GitHub Action to make requests to AWS API Gateway using OIDC",
"main": "index.js",
"scripts": {
"lint": "standard .",
"build": "ncc build src/index.js -o dist --license licenses.txt",
"test": "NODE_ENV=test jest --coverage",
"test:watch": "NODE_ENV=test jest --coverage --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jveldboom/action-aws-apigw-oidc-request.git"
},
"author": "John Veldboom",
"license": "MIT",
"bugs": {
"url": "https://github.com/jveldboom/action-aws-apigw-oidc-request/issues"
},
"homepage": "https://github.com/jveldboom/action-aws-apigw-oidc-request#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"aws4": "^1.11.0",
"axios": "^1.7.4"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@vercel/ncc": "^0.38.1",
"jest": "^29.3.1",
"standard": "^17.0.0"
},
"standard": {
"ignore": [
"dist/**"
]
}
}