-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 1.21 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
{
"name": "serverless-aws-secrets",
"description": "Serverless plugin that reads environment variables and replaces secrets using AWS Secrets Manager",
"author": "Robin Thomas <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/robin-thomas/serverless-aws-secrets"
},
"keywords": [
"serverless",
"aws-secrets-manager",
"serverless-secrets",
"aws-lambda"
],
"main": "dist/index.js",
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"lint": "eslint src/ --ext .ts",
"prepublishOnly": "npm run build",
"test": "jest --coverage"
},
"peerDependencies": {
"@aws-sdk/client-secrets-manager": "^3.408.0"
},
"devDependencies": {
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@tsconfig/node18": "^18.2.2",
"@types/jest": "^29.5.11",
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"eslint": "^8.56.0",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"nock": "^13.4.0",
"prettier": "^3.1.1",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}