-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
55 lines (55 loc) · 1.39 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
52
53
54
55
{
"name": "action-aws-ssm-to-dotenv",
"version": "1.4.0",
"description": "create `.env` with AWS SSM parameters path",
"main": "lib/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"release": "yarn run semantic-release",
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt"
},
"repository": {
"type": "git",
"url": "[email protected]:almerindo/action-env-from-aws-ssm.git"
},
"keywords": [
"github",
"action",
"aws",
"ssm",
"parameters",
"env",
"dotenv",
".env",
"rehem",
"whitebeard",
"almerindo"
],
"author": "Almerindo Rehem <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/almerindo/action-env-from-aws-ssm.git/issues"
},
"homepage": "https://github.com/almerindo/action-env-from-aws-ssm.git#readme",
"dependencies": {
"@actions/core": "^1.10.1",
"aws-sdk": "^2.1659.0"
},
"devDependencies": {
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/commit-analyzer": "^8.0.1",
"@semantic-release/git": "^9.0.0",
"@semantic-release/release-notes-generator": "^9.0.2",
"@types/node": "^10.14.18",
"@vercel/ncc": "^0.28.6",
"husky": "^3.0.5",
"semantic-release": "^17.4.2",
"typescript": "^3.6.3"
},
"husky": {
"hooks": {
"pre-commit": "tsc && git add lib"
}
}
}