forked from cmancone/akeyless-action
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
38 lines (38 loc) · 1.14 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": "akeyless-action",
"version": "4.3.0",
"description": "This action will login to AKeyless using JWT or IAM auth and then fetch secrets and/or provision AWS access via a dynamic producer.",
"main": "src/index.js",
"scripts": {
"restore": "npm install",
"format": "prettier --write **/*.js",
"lint": "eslint **/*.js",
"test": "jest",
"precommit": "npm run restore && npm run format && npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/LanceMcCarthy/akeyless-action.git"
},
"keywords": [],
"author": "Lance McCarthy",
"license": "ISC",
"bugs": {
"url": "https://github.com/LanceMcCarthy/akeyless-action/issues"
},
"homepage": "https://github.com/LanceMcCarthy/akeyless-action#readme",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"akeyless": "^4.3.0",
"akeyless-cloud-id": "^2.3.0"
},
"devDependencies": {
"eslint": "^9.18.0",
"eslint-plugin-github": "^5.1.5",
"eslint-plugin-jest": "^28.11.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "3.4.2"
}
}