This repository has been archived by the owner on Jul 26, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 404
/
package.json
93 lines (93 loc) · 2.5 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
{
"name": "kubernetes-external-secrets",
"version": "8.5.5",
"description": "Kubernetes external secrets",
"main": "bin/daemon.js",
"scripts": {
"coverage": "nyc ./node_modules/mocha/bin/_mocha --recursive lib",
"lint": "eslint --fix --ignore-pattern /coverage/ ./",
"local": "LOCALSTACK=1 AWS_ACCESS_KEY_ID=foobar AWS_SECRET_ACCESS_KEY=foobar nodemon",
"localstack": "docker run -it -p 4566:4566 -p 9999:8080 -e SERVICES=ssm,secretsmanager,sts -e DEBUG=1 --rm localstack/localstack:latest",
"release": "standard-version --tag-prefix='' -a",
"start": "./bin/daemon.js",
"nodemon": "nodemon ./bin/daemon.js",
"test": "eslint --ignore-pattern /coverage/ ./ && mocha --recursive lib",
"test-e2e": "./e2e/run-e2e-suite.sh"
},
"repository": {
"type": "git",
"url": "https://github.com/external-secrets/kubernetes-external-secrets"
},
"keywords": [
"kubernetes",
"secrets",
"aws",
"alicloud",
"aliyun"
],
"author": "GoDaddy Operating Company, LLC",
"license": "MIT",
"engines": {
"node": "^14.18.0"
},
"dependencies": {
"@alicloud/kms20160120": "^1.1.0",
"@azure/identity": "^2.0.1",
"@azure/keyvault-secrets": "^4.3.0",
"@google-cloud/secret-manager": "^3.2.3",
"@ibm-cloud/secrets-manager": "^0.1.0",
"akeyless": "^2.0.15",
"akeyless-cloud-id": "^1.0.0",
"aws-sdk": "^2.628.0",
"express": "^4.17.1",
"js-yaml": "^3.14.1",
"kubernetes-client": "^9.0.0",
"lodash": "^4.17.21",
"make-promises-safe": "^5.1.0",
"node-vault": "^0.9.18",
"pino": "^7.0.5",
"prom-client": "^12.0.0",
"proxy-agent": "^5.0.0"
},
"devDependencies": {
"chai": "4.3.4",
"dotenv": "10.0.0",
"eslint": "7.32.0",
"eslint-config-standard": "14.1.1",
"eslint-plugin-import": "2.25.2",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "5.1.0",
"eslint-plugin-security": "1.4.0",
"eslint-plugin-standard": "4.1.0",
"mocha": "^9.2.0",
"nodemon": "2.0.13",
"nyc": "15.1.0",
"sinon": "9.2.4",
"standard-version": "^9.3.2",
"supertest": "6.1.6"
},
"resolutions": {
"jose": "^1.28.1"
},
"nyc": {
"check-coverage": true,
"reporter": [
"cobertura",
"json-summary",
"lcov",
"text",
"text-summary"
],
"exclude": [
"config/",
"coverage/",
"bin/",
"**/*.test.js"
],
"lines": 4,
"functions": 4,
"all": true,
"cache": false,
"temp-directory": "./coverage/.nyc_output"
}
}