-
Notifications
You must be signed in to change notification settings - Fork 37
/
package.json
42 lines (42 loc) · 1.09 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
{
"name": "aws-secrets-manager-actions",
"version": "1.2.1",
"description": "GitHub Actions for AWS Secrets Manager",
"main": "index.js",
"scripts": {
"lint": "eslint index.js index.test.js",
"package": "ncc build index.js -o dist",
"test": "eslint index.js index.test.js && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/say8425/aws-secrets-manager-actions.git"
},
"keywords": [
"aws",
"actions",
"github",
"secrets-manager"
],
"author": "Penguin",
"license": "MIT",
"bugs": {
"url": "https://github.com/say8425/aws-secrets-manager-actions/issues"
},
"homepage": "https://github.com/say8425/aws-secrets-manager-actions",
"dependencies": {
"@actions/core": "^1.6.0",
"aws-sdk": "^2.1070.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.1",
"dotenv": "^8.2.0",
"eslint": "7.4.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jest": "^23.8.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.1.0"
}
}