-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.52 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.52 KB
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
{
"author": "Lee Hull",
"license": "ISC",
"name": "config-secrets",
"version": "1.1.0",
"description": "node-config plugin that resolves Docker/Kubernetes secret files alongside environment variables for custom-environment-variables.",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"audit": "npm audit",
"audit:fix": "npm audit fix",
"coverage": "jest --reporters=default --verbose --coverage --coverageReporters=text --coverageReporters=text-summary",
"lint": "eslint .",
"prepare": "husky",
"check-commit": "pre-commit run --all-files",
"test": "jest --reporters=default --verbose",
"upgrade": "npx --yes npm-check-updates -u"
},
"dependencies": {
"config": "^4.4.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"config-v1": "npm:config@^1.31.0",
"config-v2": "npm:config@^2.0.2",
"config-v3": "npm:config@^3.3.12",
"config-v4": "npm:config@^4.4.1",
"eslint": "^10.3.0",
"globals": "^17.6.0",
"husky": "^9.1.7",
"jest": "^30.4.2"
},
"files": [
"LICENSE",
"README.md",
"lib/"
],
"keywords": [
"config",
"configuration",
"docker",
"environment-variables",
"kubernetes",
"node-config",
"secrets"
],
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lee5i3/config-secrets.git"
},
"bugs": {
"url": "https://github.com/lee5i3/config-secrets/issues"
},
"homepage": "https://github.com/lee5i3/config-secrets#readme"
}