-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.45 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
{
"name": "serverless-plugin-environment-secret",
"version": "0.2.0",
"description": "Serverless plugin for easily moving environment variables to a Secrets Manager secret",
"repository": {
"type": "git",
"url": "git+https://github.com/danmactough/serverless-plugin-environment-secret.git"
},
"author": "Dan MacTough <[email protected]> (https://mact.me)",
"license": "MIT",
"bugs": {
"url": "https://github.com/danmactough/serverless-plugin-environment-secret/issues"
},
"homepage": "https://github.com/danmactough/serverless-plugin-environment-secret#readme",
"main": "index.js",
"devDependencies": {
"@aws-sdk/client-secrets-manager": "^3.609.0",
"@types/jest": "^29.5.8",
"@types/node": "^20.12.12",
"eslint": "^8.57.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.0",
"eslint-plugin-unicorn": "^44.0.2",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^13.3.0",
"prettier": "^2.8.8",
"serverless-offline": "^13.6.0",
"typescript": "^5.4.5"
},
"peerDependencies": {
"serverless": "^3"
},
"engines": {
"node": ">=20.11.1"
},
"keywords": [
"serverless",
"plugin",
"environment",
"env",
"config",
"configuration",
"secrets"
],
"scripts": {
"prepare": "husky install",
"lint": "eslint --ext \".js\" --fix .",
"format": "prettier --write .",
"typecheck": "tsc",
"pretest": "npm run lint && npm run format && npm run typecheck && bash -c '[ \"$CI\" != \"true\" ] || (git status -uno ; [[ -z $(git status -uno -z) ]])'",
"test": "NODE_OPTIONS=--unhandled-rejections=strict jest"
},
"prettier": {
"singleQuote": true
},
"lint-staged": {
"*.{json,y{,a}ml,md}": [
"prettier --write"
],
"*.js": [
"eslint --fix",
"prettier --write"
]
},
"jest": {
"collectCoverage": true,
"collectCoverageFrom": [
"**/*.js",
"!**/node_modules/**",
"!**/dist/**",
"!**/test/**",
"!.eslintrc.js"
],
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov"
],
"coverageThreshold": {
"global": {
"branches": 97,
"functions": 97,
"lines": 97
}
},
"modulePathIgnorePatterns": [
"/coverage/",
"/dist/"
],
"testPathIgnorePatterns": [
"/coverage/",
"/dist/",
"/node_modules/"
]
}
}