-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.33 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
{
"name": "sync-secrets-manager",
"version": "0.5.0",
"type": "module",
"description": "Github action that sync an AWS Secrets Manager and it's values from a provided json file",
"main": "index.js",
"scripts": {
"lint": "npx eslint --fix .",
"format": "npx prettier --write .",
"test": "FORCE_COLOR=0 mocha ./tests/**/*.test.js",
"pre-commit": "pre-commit install --hook-type commit-msg"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Drafteame/sync-secrets-manager.git"
},
"keywords": [
"github",
"action",
"aws",
"secrets-manager",
"sync"
],
"author": "Eduardo Aguilar <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Drafteame/sync-secrets-manager/issues"
},
"homepage": "https://github.com/Drafteame/sync-secrets-manager#readme",
"devDependencies": {
"chai": "^4.3.10",
"eslint": "^8.50.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-import": "^2.28.1",
"eslint-plugin-prettier": "^5.0.0",
"mocha": "^10.2.0",
"prettier": "^3.0.3",
"sinon": "^16.1.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@aws-sdk/client-secrets-manager": "^3.425.0",
"chalk": "^5.3.0",
"fs": "^0.0.1-security",
"lodash": "^4.17.21"
}
}