-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
51 lines (51 loc) · 1.47 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
{
"name": "@ryanvade/aws-credentials-rotation-action",
"version": "1.0.0",
"description": "Automatically rotate AWS Credentials in Github Action Secrets",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"package": "tsc && ncc build --source-map --license licenses.txt",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ryanvade/aws-credentials-rotation-action.git"
},
"keywords": [
"actions"
],
"author": "Ryan Owens <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ryanvade/aws-credentials-rotation-action/issues"
},
"homepage": "https://github.com/ryanvade/aws-credentials-rotation-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"@octokit/action": "^3.1.6",
"aws-sdk": "^2.809.0",
"tweetsodium": "0.0.5"
},
"devDependencies": {
"@types/jest": "^26.0.19",
"@types/node": "^14.14.12",
"@typescript-eslint/parser": "^4.9.1",
"@vercel/ncc": "^0.25.1",
"aws-sdk-mock": "^5.1.0",
"eslint": "^7.15.0",
"eslint-plugin-github": "^4.1.1",
"eslint-plugin-jest": "^24.1.3",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"js-yaml": "^3.14.1",
"nock": "^13.0.5",
"prettier": "^2.2.1",
"ts-jest": "^26.4.4",
"typescript": "^4.1.2"
}
}