forked from deptno/action-aws-ssm-to-dotenv
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 934 Bytes
/
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
{
"name": "action-aws-ssm-to-dotenv",
"version": "1.3.2",
"description": "create `.env` with AWS SSM parameters path",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": "git+https://github.com/deptno/action-aws-ssm-to-dotenv.git",
"keywords": [
"github",
"action",
"aws",
"ssm",
"parameters",
"env",
"dotenv",
".env"
],
"author": "Bonggyun Lee <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/deptno/action-aws-ssm-to-dotenv/issues"
},
"homepage": "https://github.com/deptno/action-aws-ssm-to-dotenv#readme",
"dependencies": {
"@actions/core": "^1.2.3",
"aws-sdk": "^2.653.0"
},
"devDependencies": {
"@types/node": "^13.11.0",
"husky": "^4.2.3",
"typescript": "^3.8.3"
},
"husky": {
"hooks": {
"pre-commit": "tsc && git add lib"
}
}
}