-
Notifications
You must be signed in to change notification settings - Fork 39
/
package.json
45 lines (45 loc) · 1.38 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
{
"name": "aws-secretsmanager-get-secrets",
"version": "1.0.0",
"description": "GitHub action for retrieving secrets from AWS Secrets Manager",
"main": "dist/index.js",
"scripts": {
"test": "npm run lint && jest --coverage --verbose __tests__",
"integration-test": "jest --coverage --verbose",
"lint": "eslint src/**.ts",
"fix": "eslint src/** --fix",
"build": "tsc && ncc build ./src/index.ts --source-map --license licenses.txt && ncc build ./src/cleanup.ts -o dist/cleanup"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-actions/aws-secretsmanager-get-secrets.git"
},
"keywords": [
"AWS",
"SecretsManager",
"GitHub",
"Actions"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/aws-actions/aws-secretsmanager-get-secrets/issues"
},
"homepage": "https://github.com/aws-actions/aws-secretsmanager-get-secrets#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@aws-sdk/client-secrets-manager": "^3.606.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@vercel/ncc": "^0.38.1",
"aws-sdk-client-mock": "^4.0.1",
"aws-sdk-client-mock-jest": "^4.0.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.5"
}
}