generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1.06 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
{
"name": "cert-2-aws-creds",
"version": "0.1.0",
"private": true,
"description": "GitHub Action that retrieves temporary AWS credentials using X.509 certificate",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"test": "jest",
"release": "npm ci && npm run build && npm prune --production && sed -i '.bak' -e 's/^node_modules\\//# node_modules\\//g' .gitignore && rm .gitignore.bak"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ThinkThenRant/cert-2-aws-creds.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Yenlin Chen (hencrice@)",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThinkThenRant/cert-2-aws-creds/issues"
},
"homepage": "https://github.com/ThinkThenRant/cert-2-aws-creds#readme",
"dependencies": {
"@actions/core": "^1.2.6"
},
"devDependencies": {
"@types/jest": "^26.0.20",
"@types/node": "^14.14.31",
"aws-sdk": "^2.824.0",
"jest": "^25.5.4",
"jest-circus": "^26.6.3",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
}
}